chore(StatusSearchPopup.qml): disable enter and return keys

This commit is contained in:
Anastasiya S 2021-11-03 17:27:05 +03:00
parent 31cfc8833a
commit 0a08bb80c0
1 changed files with 7 additions and 0 deletions

View File

@ -93,6 +93,13 @@ StatusModal {
font.pixelSize: 28
font.family: Theme.palette.baseFont.name
color: Theme.palette.directColor1
Keys.onEnterPressed: {
event.accepted = false
}
Keys.onReturnPressed: {
event.accepted = false
}
}
}
StatusMenuSeparator {