Fix cancel edit order on Escape key

This commit is contained in:
Nicolas Werner 2021-02-10 18:00:52 +01:00
parent 6c65136101
commit 2a5e20dc6f
1 changed files with 3 additions and 3 deletions

View File

@ -50,10 +50,10 @@ ListView {
Shortcut {
sequence: StandardKey.Cancel
onActivated: {
if (chat.model.edit)
chat.model.edit = undefined;
else
if (chat.model.reply)
chat.model.reply = undefined;
else
chat.model.edit = undefined;
}
}