Added some shortcuts

This commit is contained in:
obscuren
2014-05-27 16:23:53 +02:00
parent 118860abb2
commit 969b4a4a36
2 changed files with 32 additions and 1 deletions

View File

@@ -24,11 +24,21 @@ ApplicationWindow {
shortcut: "Ctrl+o"
onTriggered: openAppDialog.open()
}
}
Menu {
title: "Tools"
MenuItem {
text: "Muted"
shortcut: "Ctrl+e"
onTriggered: ui.muted("")
}
MenuItem {
text: "Debugger"
shortcut: "Ctrl+d"
onTriggered: ui.startDebugger()
}
}
Menu {