chore(StatusSearchPopup.qml): disable enter and return keys
This commit is contained in:
parent
31cfc8833a
commit
0a08bb80c0
|
@ -93,6 +93,13 @@ StatusModal {
|
||||||
font.pixelSize: 28
|
font.pixelSize: 28
|
||||||
font.family: Theme.palette.baseFont.name
|
font.family: Theme.palette.baseFont.name
|
||||||
color: Theme.palette.directColor1
|
color: Theme.palette.directColor1
|
||||||
|
Keys.onEnterPressed: {
|
||||||
|
event.accepted = false
|
||||||
|
}
|
||||||
|
Keys.onReturnPressed: {
|
||||||
|
event.accepted = false
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
StatusMenuSeparator {
|
StatusMenuSeparator {
|
||||||
|
|
Loading…
Reference in New Issue