diff options
Diffstat (limited to 'qt-mobile/qml/mobilecomponents/Icon.qml')
-rw-r--r-- | qt-mobile/qml/mobilecomponents/Icon.qml | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/qt-mobile/qml/mobilecomponents/Icon.qml b/qt-mobile/qml/mobilecomponents/Icon.qml index 9f7be0f9b..150c181e6 100644 --- a/qt-mobile/qml/mobilecomponents/Icon.qml +++ b/qt-mobile/qml/mobilecomponents/Icon.qml @@ -38,13 +38,11 @@ Item { sourceSize.width: root.width sourceSize.height: root.height } - /* - * 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 - } - */ + /* // FIXME: This causes black squares on some GLES drivers, notably on Adreno hardware + GammaAdjust { + anchors.fill: image + source: image + gamma: root.active ? 3.0 : 1 + } + */ } |