[vlc-commits] [Git][videolan/vlc][master] qml: fix Ctrl++ zoom-in shortcut not working

Steve Lhomme (@robUx4) gitlab at videolan.org
Fri Jul 17 02:40:30 UTC 2026



Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
3b51ea3f by SK Devane at 2026-07-17T02:18:15+00:00
qml: fix Ctrl++ zoom-in shortcut not working

- - - - -


1 changed file:

- modules/gui/qt/menus/qml/GlobalShortcuts.qml


Changes:

=====================================
modules/gui/qt/menus/qml/GlobalShortcuts.qml
=====================================
@@ -49,8 +49,8 @@ Item {
     ShortcutExt{ sequence:"F11"; onActivated: MainCtx.toggleInterfaceFullScreen() }
     ShortcutExt{ sequence:"Ctrl+H"; onActivated: MainCtx.minimalView = !MainCtx.minimalView; }
 
-    ShortcutExt{ sequences: [StandardKey.ZoomIn]; onActivated: MainCtx.incrementIntfUserScaleFactor(true) }
-    ShortcutExt{ sequences: [StandardKey.ZoomOut]; onActivated: MainCtx.incrementIntfUserScaleFactor(false) }
+    ShortcutExt{ sequences: [StandardKey.ZoomIn, "Ctrl+="]; onActivated: MainCtx.incrementIntfUserScaleFactor(true) }
+    ShortcutExt{ sequences: [StandardKey.ZoomOut, "Ctrl+Shift+-"]; onActivated: MainCtx.incrementIntfUserScaleFactor(false) }
 
     Loader {
         active: MainCtx.mediaLibraryAvailable



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/3b51ea3fbadf3dd7955a411fcbcfad2514d759e2

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/3b51ea3fbadf3dd7955a411fcbcfad2514d759e2
You're receiving this email because of your account on code.videolan.org. Manage all notifications: https://code.videolan.org/-/profile/notifications | Help: https://code.videolan.org/help




More information about the vlc-commits mailing list