aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/ToolButton.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-06-30 15:00:51 +0200
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-06-30 20:54:27 +0000
commit7dda04281b255c3feef526fc9b6dc4c18c740144 (patch)
treed1effd50f5704e4707500e8e4ed3a0a864e2038e /src/imports/controls/ToolButton.qml
parent1cb1048d7b0d24ea8cbc9ddde965a8eb00feef09 (diff)
Remove Theme.disabledOpacity
Use Theme.disabledColor instead. Change-Id: I76311d6c6b573b01a26ee2b8d434a841c4d86292 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/imports/controls/ToolButton.qml')
-rw-r--r--src/imports/controls/ToolButton.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/imports/controls/ToolButton.qml b/src/imports/controls/ToolButton.qml
index 9a700bda..0c1d61f8 100644
--- a/src/imports/controls/ToolButton.qml
+++ b/src/imports/controls/ToolButton.qml
@@ -71,8 +71,8 @@ AbstractToolButton {
implicitWidth: 26
implicitHeight: 26
- opacity: control.Theme.disabledOpacity
- color: control.Theme.frameColor
+ opacity: 0.25
+ color: control.Theme.pressColor
visible: control.pressed
}
//! [background]