diff options
Diffstat (limited to 'qt-mobile/qml')
-rw-r--r-- | qt-mobile/qml/mobilecomponents/Icon.qml | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/qt-mobile/qml/mobilecomponents/Icon.qml b/qt-mobile/qml/mobilecomponents/Icon.qml index 59cfaf054..9f7be0f9b 100644 --- a/qt-mobile/qml/mobilecomponents/Icon.qml +++ b/qt-mobile/qml/mobilecomponents/Icon.qml @@ -38,9 +38,13 @@ Item { sourceSize.width: root.width sourceSize.height: root.height } - GammaAdjust { - anchors.fill: image - source: image - gamma: root.active ? 3.0 : 1 - } + /* + * this appears to cause us to show nothing but black squares instead + * of icons on some Android devices + GammaAdjust { + anchors.fill: image + source: image + gamma: root.active ? 3.0 : 1 + } + */ } |