mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
fix #51
This commit is contained in:
parent
6969101760
commit
7fa7879493
1 changed files with 7 additions and 2 deletions
|
|
@ -222,8 +222,13 @@ Rectangle {
|
|||
|
||||
AbstractButton {
|
||||
anchors.fill: parent
|
||||
onPressed: parent.color = "#e0e0e0"
|
||||
onReleased: parent.color = "white"
|
||||
onPressedChanged: {
|
||||
if(pressed)
|
||||
parent.color = "#e0e0e0"
|
||||
else
|
||||
parent.color = "white"
|
||||
}
|
||||
|
||||
onClicked: {
|
||||
if (modelData === "R") {
|
||||
keypadRoot.backspace();
|
||||
|
|
|
|||
Loading…
Reference in a new issue