diff options
author | Miquel Lionel <lionel@les-miquelots.net> | 2021-11-02 12:29:39 +0100 |
---|---|---|
committer | Miquel Lionel <lionel@les-miquelots.net> | 2021-11-02 12:29:39 +0100 |
commit | 09dbd21fef6c18bb79f5dd1b0c73a02dd9fba92d (patch) | |
tree | 5df86ed1844c51648db36a88fae324d442b9279f /qml/main.qml | |
parent | 3ef429a1b6759d6fe84cc44ed7dea51a3c8be799 (diff) | |
download | kdeltachat-09dbd21fef6c18bb79f5dd1b0c73a02dd9fba92d.tar.gz kdeltachat-09dbd21fef6c18bb79f5dd1b0c73a02dd9fba92d.zip |
Videochat message displayed, rm actions dups
- message.*, qml/Message.qml: Videochat invitation message send from the original DeltaChat
app are displayed. Currently, it's best if the chat instance
use http or https scheme, since it'll normally open in a browser
- qml/ComposePane.qml : We made Shorcuts and actions are needed anymore, no need for duplicates
- qml/main.qml: Fix shortcut help for opening Settings page, it's Shift+Tab not Shift+S.
Diffstat (limited to 'qml/main.qml')
-rw-r--r-- | qml/main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qml/main.qml b/qml/main.qml index fc49bb9..f0798fd 100644 --- a/qml/main.qml +++ b/qml/main.qml @@ -135,7 +135,7 @@ Kirigami.ApplicationWindow { font.pixelSize: 14 }, Text { - text: "<b>F1</b>: Displays this" + "<br><b>F2</b>: Work on/offline" + "<br><b>F5</b>: Network check" + "<br><b>Shift+S</b>: Account settings" + "<br><b>Alt+C</b>: Clear search" + "<br><b>Alt+Tab</b>: Switch accounts" + "<br><b>Ctrl+F</b>: Search contacts" + "<br><b>Ctrl+N</b>: New chat" + "<br><b>Ctrl+S</b>: Send message" + "<br><b>Ctrl+Tab</b>: Show sidebar" + "<br><b>Ctrl+Q</b>: Quit" + text: "<b>F1</b>: Displays this" + "<br><b>F2</b>: Work on/offline" + "<br><b>F5</b>: Network check" + "<br><b>Shift+Tab</b>: Account settings" + "<br><b>Alt+C</b>: Clear search" + "<br><b>Alt+Tab</b>: Switch accounts" + "<br><b>Ctrl+F</b>: Search contacts" + "<br><b>Ctrl+N</b>: New chat" + "<br><b>Ctrl+S</b>: Send message" + "<br><b>Ctrl+Tab</b>: Show sidebar" + "<br><b>Ctrl+Q</b>: Quit" topPadding: 20 leftPadding: 10 bottomPadding: 20 |