From 60180d841c76d470e2f408c65bb4d83ce3280df3 Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Sun, 12 May 2024 15:50:03 +0200 Subject: [PATCH] fix formatting --- src/emulate/wlroots.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/emulate/wlroots.rs b/src/emulate/wlroots.rs index 4a9dd47..d83e715 100644 --- a/src/emulate/wlroots.rs +++ b/src/emulate/wlroots.rs @@ -182,7 +182,8 @@ impl VirtualInput { } PointerEvent::AxisDiscrete120 { axis, value } => { let axis: Axis = (axis as u32).try_into()?; - self.pointer.axis_discrete(0, axis, value as f64 / 6., value / 120); + self.pointer + .axis_discrete(0, axis, value as f64 / 6., value / 120); self.pointer.frame(); } PointerEvent::Frame {} => self.pointer.frame(),