diff options
| -rw-r--r-- | src/styles/Base/ButtonStyle.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/styles/Base/ButtonStyle.qml b/src/styles/Base/ButtonStyle.qml index 7721fdf2a..aea5f721e 100644 --- a/src/styles/Base/ButtonStyle.qml +++ b/src/styles/Base/ButtonStyle.qml @@ -99,7 +99,7 @@ Style { implicitHeight: 25 BorderImage { anchors.fill: parent - source: control.pressed ? "images/button_down.png" : "images/button.png" + source: control.pressed || (control.checkable && control.checked) ? "images/button_down.png" : "images/button.png" border.top: 6 border.bottom: 6 border.left: 6 |
