Add null action on scroll to avoid crash

This commit is contained in:
Henrique Lustosa 2025-08-03 11:10:09 -03:00
commit 26afc32b69

View file

@ -364,6 +364,7 @@ impl List {
text_editor::Action::Edit(_) => {
// Do nothing - ignore all editing operations
}
text_editor::Action::Scroll { lines } => { }
// Allow all other actions (movement, selection, clicking, scrolling, etc.)
_ => {
self.description_content.perform(action);