From baf33d3dcaeb4a44d5f07f6194e6785813f055ad Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 21 Feb 2026 02:29:55 +0100 Subject: Fix non-shifted scrollwheel on the timeline. It should scroll up and down, and now it does. --- src/wx/content_timeline.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/wx/content_timeline.cc b/src/wx/content_timeline.cc index 537877635..7e8a74ae5 100644 --- a/src/wx/content_timeline.cc +++ b/src/wx/content_timeline.cc @@ -172,6 +172,8 @@ ContentTimeline::mouse_wheel_turned(wxMouseEvent& event) _main_canvas->GetViewStart(&before_start_x, &before_start_y); auto const width = _main_canvas->GetSize().GetWidth(); _main_canvas->Scroll(std::max(0.0, before_start_x - rotation * 100.0 / width), before_start_y); + } else { + event.Skip(); } } -- cgit v1.2.3