You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Holding CTRL while turning the mouse wheel is translated to a Zoom event. This is correct on Windows, but on a Mac the correct modifier key would be Command rather than CTRL.
(On a Mac, the combination CTRL+Wheel is captured by the OS and triggers a full-screen zoom.)
To Reproduce
Steps to reproduce the behavior:
On a Mac: cargo run -p egui_demo_app
Open the "Plot" demo
try zooming with Command+MouseWheel (only moves but does not zoom) or CTRL+MouseWheel (triggers hardware full-screen zoom which is not desired)
The text was updated successfully, but these errors were encountered:
Oh, ok… I am glad you tested this on your machine.
Keybindings on the Mac often surprise me. I think I found the setting that makes the difference for me: System Preferences → Accessibility → Zoom → [/] Use scroll gesture with modifier keys to zoom (can be configured as "Control", "Option", or "Command")
Describe the bug
Holding
CTRL
while turning the mouse wheel is translated to a Zoom event. This is correct on Windows, but on a Mac the correct modifier key would beCommand
rather thanCTRL
.(On a Mac, the combination
CTRL
+Wheel is captured by the OS and triggers a full-screen zoom.)To Reproduce
Steps to reproduce the behavior:
cargo run -p egui_demo_app
Command
+MouseWheel (only moves but does not zoom) orCTRL
+MouseWheel (triggers hardware full-screen zoom which is not desired)The text was updated successfully, but these errors were encountered: