summaryrefslogtreecommitdiffstats
path: root/basicsuite/mediaplayer/EffectSelectionPanel.qml
diff options
context:
space:
mode:
Diffstat (limited to 'basicsuite/mediaplayer/EffectSelectionPanel.qml')
-rw-r--r--basicsuite/mediaplayer/EffectSelectionPanel.qml5
1 files changed, 2 insertions, 3 deletions
diff --git a/basicsuite/mediaplayer/EffectSelectionPanel.qml b/basicsuite/mediaplayer/EffectSelectionPanel.qml
index 4daded0..0af10a5 100644
--- a/basicsuite/mediaplayer/EffectSelectionPanel.qml
+++ b/basicsuite/mediaplayer/EffectSelectionPanel.qml
@@ -48,11 +48,10 @@
**
****************************************************************************/
import QtQuick 2.0
-import "settings.js" as Settings
Rectangle {
id: root
- color: Settings.backgroundColor
+ color: _backgroundColor
height: 78
property int itemHeight: 25
property string effectSource: ""
@@ -159,7 +158,7 @@ Rectangle {
width: parent.width
property bool isSelected: list.currentIndex == index
Text {
- color: parent.isSelected ? Settings.primaryGreen : "white"
+ color: parent.isSelected ? _primaryGreen : "white"
text: name
anchors.centerIn: parent
font.pixelSize: 20