summaryrefslogtreecommitdiffstats
path: root/src/widget/wdisplay.cpp
diff options
context:
space:
mode:
authorOwen Williams <owilliams@mixxx.org>2014-02-17 10:12:37 -0500
committerOwen Williams <owilliams@mixxx.org>2014-02-17 10:13:20 -0500
commita877d902283ce1be8d94ad668e19fa05e787dcca (patch)
treee7120303c414260e413e27e15815f8ea6ccaad40 /src/widget/wdisplay.cpp
parent4ffa86c6715261148a15c683a0169b5388f27261 (diff)
Change backpath attribute name from mode to scalemode
Add attribute to status lights to optionally not setfixedsize
Diffstat (limited to 'src/widget/wdisplay.cpp')
-rw-r--r--src/widget/wdisplay.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widget/wdisplay.cpp b/src/widget/wdisplay.cpp
index 05d416d12d..81177b3d62 100644
--- a/src/widget/wdisplay.cpp
+++ b/src/widget/wdisplay.cpp
@@ -40,7 +40,7 @@ void WDisplay::setup(QDomNode node, const SkinContext& context) {
// Set background pixmap if available
if (context.hasNode(node, "BackPath")) {
QString mode_str = context.selectAttributeString(
- context.selectElement(node, "BackPath"), "mode", "TILE");
+ context.selectElement(node, "BackPath"), "scalemode", "TILE");
setPixmapBackground(context.getSkinPath(context.selectString(node, "BackPath")),
Paintable::DrawModeFromString(mode_str));
}