From 0d444716b012a541caf9c7f13076b0894b8cb2ee Mon Sep 17 00:00:00 2001 From: yann300 Date: Tue, 10 Mar 2015 12:38:55 +0100 Subject: [PATCH] small changes --- mix/qml/LogsPane.qml | 2 +- mix/qml/LogsPaneStyle.qml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/mix/qml/LogsPane.qml b/mix/qml/LogsPane.qml index 8956abdf2..9d03b2af2 100644 --- a/mix/qml/LogsPane.qml +++ b/mix/qml/LogsPane.qml @@ -277,7 +277,7 @@ Rectangle Rectangle { width: logsTable.width - 4 height: 17 - color: styleData.alternate ? "transparent" : "#f0f0f0" + color: styleData.alternate ? "transparent" : LogsPaneStyle.generic.layout.logAlternateColor } } } diff --git a/mix/qml/LogsPaneStyle.qml b/mix/qml/LogsPaneStyle.qml index c47ee6338..59b80653a 100644 --- a/mix/qml/LogsPaneStyle.qml +++ b/mix/qml/LogsPaneStyle.qml @@ -23,6 +23,7 @@ QtObject { property int dateWidth: 150 property int typeWidth: 80 property int contentWidth: 700 + property string logAlternateColor: "#f0f0f0" } } }