summaryrefslogtreecommitdiff
path: root/src/plugins/qmlprofiler/qml/TimeDisplay.qml
diff options
context:
space:
mode:
authorChristiaan Janssen <christiaan.janssen@nokia.com>2011-11-29 12:32:35 +0100
committerChristiaan Janssen <christiaan.janssen@nokia.com>2011-12-05 10:10:40 +0100
commit1cd6972ac848633befcace396cf59c7f32d845ab (patch)
treee7aeb6c7e536289fa77167f8f259a67ef0f25953 /src/plugins/qmlprofiler/qml/TimeDisplay.qml
parent7b9a42da151b49fc381f9444bffba403832ced32 (diff)
downloadqt-creator-1cd6972ac848633befcace396cf59c7f32d845ab.tar.gz
QmlProfiler: minor adjustments to timeline UI
Change-Id: I74460d9a32ced707fa4a550199bba5f5906f417e Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
Diffstat (limited to 'src/plugins/qmlprofiler/qml/TimeDisplay.qml')
-rw-r--r--src/plugins/qmlprofiler/qml/TimeDisplay.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qmlprofiler/qml/TimeDisplay.qml b/src/plugins/qmlprofiler/qml/TimeDisplay.qml
index 0efba45bdd..b3e4d099a2 100644
--- a/src/plugins/qmlprofiler/qml/TimeDisplay.qml
+++ b/src/plugins/qmlprofiler/qml/TimeDisplay.qml
@@ -105,8 +105,8 @@ Canvas2D {
ctxt.stroke();
// gradient borders
- var gradientDark = "rgba(160, 160, 160, 1)";
- var gradientClear = "rgba(160, 160, 160, 0)";
+ var gradientDark = "rgba(0, 0, 0, 0.53125)";
+ var gradientClear = "rgba(0, 0, 0, 0)";
var grad = ctxt.createLinearGradient(0, 0, 0, 6);
grad.addColorStop(0,gradientDark);
grad.addColorStop(1,gradientClear);