summaryrefslogtreecommitdiffstats
path: root/examples/datavisualization/qmlspectrogram/qml
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2014-07-04 14:40:23 +0300
committerMika Salmela <mika.salmela@digia.com>2014-07-04 17:34:33 +0300
commit2ab620245c71555e343d21baf1b7f4dcc34d9a9f (patch)
tree153be6ed001f157167c5fb1cc4303d4b72e8503b /examples/datavisualization/qmlspectrogram/qml
parent1b311517f8889e6faa8a1ae51af582c1cd07e739 (diff)
Improved the visuals in slice modes.
Grid lines should no longer vanish into white background due to excessive ambient light multiplier when using high ambient with no specular. I'm still not happy with how bars slice mode colors look. The colors seem washed out compared to main view. Also, on bars, some specular is needed to make bars look 3D, but too much makes it ugly. Also fixes some misc issues in surface slice mode. Task-number: QTRD-3237 Change-Id: I4bed3d922cbc8f5191cc01ab3396849db767cae9 Reviewed-by: Mika Salmela <mika.salmela@digia.com>
Diffstat (limited to 'examples/datavisualization/qmlspectrogram/qml')
-rw-r--r--examples/datavisualization/qmlspectrogram/qml/qmlspectrogram/main.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/datavisualization/qmlspectrogram/qml/qmlspectrogram/main.qml b/examples/datavisualization/qmlspectrogram/qml/qmlspectrogram/main.qml
index 8bb458ca..4c77fd45 100644
--- a/examples/datavisualization/qmlspectrogram/qml/qmlspectrogram/main.qml
+++ b/examples/datavisualization/qmlspectrogram/qml/qmlspectrogram/main.qml
@@ -83,8 +83,10 @@ Window {
type: Theme3D.ThemeQt
// Don't show specular spotlight as we don't want it to distort the colors
lightStrength: 0.0
- ambientLightStrength: 0.9
+ ambientLightStrength: 1.0
backgroundEnabled: false
+ gridLineColor: "#AAAAAA"
+ windowColor: "#EEEEEE"
}