From 657f0aeddfa92c862873a6d6e75868c52d8caf11 Mon Sep 17 00:00:00 2001 From: Tom Grushka Date: Tue, 19 May 2026 16:30:46 -0600 Subject: [PATCH] revert self.update_zoom to update with wheel --- src/input/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/mod.rs b/src/input/mod.rs index d2d08e9f..69aaccce 100644 --- a/src/input/mod.rs +++ b/src/input/mod.rs @@ -926,7 +926,7 @@ impl State { } let change = -(percentage / 100.); - self.update_zoom(&seat, change, false); + self.update_zoom(&seat, change, event.source() == AxisSource::Wheel); } } else { let mut frame = AxisFrame::new(event.time_msec()).source(event.source());