mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Fix cancel edit order on Escape key
This commit is contained in:
parent
6c65136101
commit
2a5e20dc6f
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue