mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-08-02 17:54:45 +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 {
|
AbstractButton {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
onPressed: parent.color = "#e0e0e0"
|
onPressedChanged: {
|
||||||
onReleased: parent.color = "white"
|
if(pressed)
|
||||||
|
parent.color = "#e0e0e0"
|
||||||
|
else
|
||||||
|
parent.color = "white"
|
||||||
|
}
|
||||||
|
|
||||||
onClicked: {
|
onClicked: {
|
||||||
if (modelData === "R") {
|
if (modelData === "R") {
|
||||||
keypadRoot.backspace();
|
keypadRoot.backspace();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue