Skip to content
Snippets Groups Projects
Commit 4ec18075 authored by Ming Rui Zhang's avatar Ming Rui Zhang Committed by Andreas Traczyk
Browse files

mainview: make ambiguous shortcuts activate

For hang up call shortcut, use onActivatedAmbiguously since
we have two existences.

Gitlab: #126
Change-Id: I46167b95212821c88651a06700013aeec38a96a3
parent 4adc59ad
No related branches found
No related tags found
No related merge requests found
......@@ -738,6 +738,7 @@ Window {
sequence: "Ctrl+D"
context: Qt.ApplicationShortcut
onActivated: CallAdapter.hangUpThisCall()
onActivatedAmbiguously: CallAdapter.hangUpThisCall()
}
Shortcut {
......
......@@ -36,6 +36,7 @@ Rectangle {
sequence: "Ctrl+D"
context: Qt.ApplicationShortcut
onActivated: CallAdapter.hangUpThisCall()
onActivatedAmbiguously: CallAdapter.hangUpThisCall()
}
// When selected conversation is changed,
......
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