summaryrefslogtreecommitdiff
path: root/utils/themeeditor/graphics
diff options
context:
space:
mode:
authorRobert Bieber <robby@bieberphoto.com>2010-07-02 05:58:06 +0000
committerRobert Bieber <robby@bieberphoto.com>2010-07-02 05:58:06 +0000
commit9d6851688e018b50e296756beffc9ced97b72df0 (patch)
treef7641b10d0d85cd0d02c406d783445ed01c11170 /utils/themeeditor/graphics
parent14caf676424f2c2a5ce44c69d41862660fa71be6 (diff)
downloadrockbox-9d6851688e018b50e296756beffc9ced97b72df0.tar.gz
rockbox-9d6851688e018b50e296756beffc9ced97b72df0.zip
Theme Editor: Fixed random outlining in default viewport, working on getting the viewer to refresh on re-render
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27235 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/graphics')
-rw-r--r--utils/themeeditor/graphics/rbviewport.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/themeeditor/graphics/rbviewport.cpp b/utils/themeeditor/graphics/rbviewport.cpp
index a2e7bf49d3..b620e1b554 100644
--- a/utils/themeeditor/graphics/rbviewport.cpp
+++ b/utils/themeeditor/graphics/rbviewport.cpp
@@ -115,9 +115,9 @@ RBViewport::RBViewport(skin_element* node, const RBRenderInfo& info)
115 115
116 setPos(x, y); 116 setPos(x, y);
117 size = QRectF(0, 0, w, h); 117 size = QRectF(0, 0, w, h);
118 debug = info.device()->data("showviewports").toBool();
119 } 118 }
120 119
120 debug = info.device()->data("showviewports").toBool();
121 lineHeight = font->lineHeight(); 121 lineHeight = font->lineHeight();
122} 122}
123 123