diff options
Diffstat (limited to 'qml/ChatlistPage.qml')
-rw-r--r-- | qml/ChatlistPage.qml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/qml/ChatlistPage.qml b/qml/ChatlistPage.qml index 2ee7e83..42ceb64 100644 --- a/qml/ChatlistPage.qml +++ b/qml/ChatlistPage.qml @@ -94,7 +94,9 @@ Kirigami.ScrollablePage { contextualActions: [ Kirigami.Action { text: "Settings" - iconName: "configure" + tooltip: "Shift+Tab" + iconName: "system-run" + shortcut: "Shift+Tab" onTriggered: { let settingsPageComponent = Qt.createComponent("qrc:/qml/SettingsPage.qml"); if (settingsPageComponent.status == Component.Ready) { @@ -162,6 +164,8 @@ Kirigami.ScrollablePage { mainAction: Kirigami.Action { text: "New chat" iconName: "list-add" + shortcut: "Ctrl+N" + tooltip: "Ctrl+N" onTriggered: { let newChatPageComponent = Qt.createComponent("qrc:/qml/NewChatPage.qml"); if (newChatPageComponent.status == Component.Ready) { |