Skip to content
Snippets Groups Projects
Commit 6a73f5b8 authored by Fatih Uzunoğlu's avatar Fatih Uzunoğlu Committed by Steve Lhomme
Browse files

qt: handle ZoomIn and ZoomOut shortcuts

parent d0fc525c
No related branches found
No related tags found
1 merge request!6038qt: handle ZoomIn and ZoomOut shortcuts
Pipeline #516071 passed with stage
in 23 minutes and 34 seconds
......@@ -48,6 +48,9 @@ Item {
ShortcutExt{ sequence:"F10"; onActivated: MainCtx.toggleToolbarMenu() }
ShortcutExt{ sequence:"F11"; onActivated: MainCtx.toggleInterfaceFullScreen() }
ShortcutExt{ sequence: StandardKey.ZoomIn; onActivated: MainCtx.incrementIntfUserScaleFactor(true) }
ShortcutExt{ sequence: StandardKey.ZoomOut; onActivated: MainCtx.incrementIntfUserScaleFactor(false) }
Loader {
active: MainCtx.mediaLibraryAvailable
source: "qrc:///qt/qml/VLC/Menus/GlobalShortcutsMedialib.qml"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment