From 3fabd4a8d035ff58e37d5cc1f22f64582bec4b62 Mon Sep 17 00:00:00 2001 From: Rudxain <76864299+Rudxain@users.noreply.github.com> Date: Wed, 13 Aug 2025 16:01:24 -0400 Subject: [PATCH] refactor(gui/views/list): mark unused var lint regression at 26afc32b6989a3fa1c66ea6b7abe900146153979 --- src/gui/views/list.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/views/list.rs b/src/gui/views/list.rs index 0add30d..cd1def5 100644 --- a/src/gui/views/list.rs +++ b/src/gui/views/list.rs @@ -364,7 +364,7 @@ impl List { text_editor::Action::Edit(_) => { // Do nothing - ignore all editing operations } - text_editor::Action::Scroll { lines } => {} + text_editor::Action::Scroll { lines: _ } => {} // Allow all other actions (movement, selection, clicking, scrolling, etc.) _ => { self.description_content.perform(action);