aboutsummaryrefslogtreecommitdiffstats
path: root/examples
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 /examples
parent1cb1048d7b0d24ea8cbc9ddde965a8eb00feef09 (diff)
Remove Theme.disabledOpacity
Use Theme.disabledColor instead. Change-Id: I76311d6c6b573b01a26ee2b8d434a841c4d86292 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/quick/controls/tabs/main.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/quick/controls/tabs/main.qml b/examples/quick/controls/tabs/main.qml
index 98bec1ee..37de78e9 100644
--- a/examples/quick/controls/tabs/main.qml
+++ b/examples/quick/controls/tabs/main.qml
@@ -161,7 +161,7 @@ ApplicationWindow {
height: parent.height
elide: Text.ElideRight
verticalAlignment: Text.AlignVCenter
- opacity: Theme.disabledOpacity
+ color: Theme.disabledColor
font.pointSize: 8
Layout.preferredWidth: parent.width - discoverCreator.width - discoverMore.width - 2 * parent.spacing
visible: Layout.preferredWidth > 0
@@ -253,7 +253,7 @@ ApplicationWindow {
height: parent.height
elide: Text.ElideRight
verticalAlignment: Text.AlignVCenter
- opacity: Theme.disabledOpacity
+ color: Theme.disabledColor
font.pointSize: 8
Layout.preferredWidth: parent.width - activityCreator.width - activityMore.width - 2 * parent.spacing
visible: Layout.preferredWidth > 0