SettingsPanelWindow: disable esc keybind when recording keybinds (fixes #1801)

This commit is contained in:
Lysec
2026-02-12 15:33:40 +01:00
parent 593c939a94
commit c4326288c5
@@ -56,26 +56,31 @@ FloatingWindow {
// Keyboard shortcuts
Shortcut {
sequence: "Escape"
enabled: !PanelService.isKeybindRecording
onActivated: SettingsPanelService.closeWindow()
}
Shortcut {
sequence: "Tab"
enabled: !PanelService.isKeybindRecording
onActivated: settingsContent.selectNextTab()
}
Shortcut {
sequence: "Backtab"
enabled: !PanelService.isKeybindRecording
onActivated: settingsContent.selectPreviousTab()
}
Shortcut {
sequence: "Up"
enabled: !PanelService.isKeybindRecording
onActivated: settingsContent.scrollUp()
}
Shortcut {
sequence: "Down"
enabled: !PanelService.isKeybindRecording
onActivated: settingsContent.scrollDown()
}