From 865eb68ad19fc146c187ff38c8c4e8f96e46551c Mon Sep 17 00:00:00 2001 From: Aram Drevekenin Date: Wed, 12 Mar 2025 14:52:44 +0100 Subject: [PATCH] HOTFIX: fix tutorial link in about plugin --- default-plugins/about/src/tips.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/default-plugins/about/src/tips.rs b/default-plugins/about/src/tips.rs index 3b339ea9..737b292d 100644 --- a/default-plugins/about/src/tips.rs +++ b/default-plugins/about/src/tips.rs @@ -276,9 +276,9 @@ impl Page { Text::new("For more details, see: ") .color_range(2, ..) )), - ActiveComponent::new(TextOrCustomRender::Text(Text::new("https://zellij.dev/screencasts/stacked-resize"))) + ActiveComponent::new(TextOrCustomRender::Text(Text::new("https://zellij.dev/tutorials/stacked-resize"))) .with_hover(TextOrCustomRender::CustomRender(Box::new(stacked_resize_screencast_link_selected), Box::new(stacked_resize_screencast_link_selected_len))) - .with_left_click_action(ClickAction::new_open_link("https://zellij.dev/screencasts/stacked-resize".to_owned(), link_executable.clone())) + .with_left_click_action(ClickAction::new_open_link("https://zellij.dev/tutorials/stacked-resize".to_owned(), link_executable.clone())) ]) ]) .with_paragraph(vec![ComponentLine::new(vec![ @@ -766,7 +766,7 @@ fn matrix_link_text_selected_len() -> usize { fn stacked_resize_screencast_link_selected(x: usize, y: usize) -> usize { print!( - "\u{1b}[{};{}H\u{1b}[m\u{1b}[1;4mhttps://zellij.dev/screencasts/stacked-resize", + "\u{1b}[{};{}H\u{1b}[m\u{1b}[1;4mhttps://zellij.dev/tutorials/stacked-resize", y + 1, x + 1 );