summaryrefslogtreecommitdiff
path: root/utils/themeeditor/graphics
diff options
context:
space:
mode:
Diffstat (limited to 'utils/themeeditor/graphics')
-rw-r--r--utils/themeeditor/graphics/rbscreen.cpp5
-rw-r--r--utils/themeeditor/graphics/rbscreen.h6
2 files changed, 1 insertions, 10 deletions
diff --git a/utils/themeeditor/graphics/rbscreen.cpp b/utils/themeeditor/graphics/rbscreen.cpp
index cb69afd906..054e8fee37 100644
--- a/utils/themeeditor/graphics/rbscreen.cpp
+++ b/utils/themeeditor/graphics/rbscreen.cpp
@@ -29,8 +29,7 @@
29RBScreen::RBScreen(const RBRenderInfo& info, bool remote, 29RBScreen::RBScreen(const RBRenderInfo& info, bool remote,
30 QGraphicsItem *parent) 30 QGraphicsItem *parent)
31 :QGraphicsItem(parent), backdrop(0), project(project), 31 :QGraphicsItem(parent), backdrop(0), project(project),
32 albumArt(0), defaultStatusBar(true), 32 albumArt(0)
33 statusBarTexture(":/render/statusbar.png")
34{ 33{
35 34
36 if(remote) 35 if(remote)
@@ -118,8 +117,6 @@ void RBScreen::paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
118 painter->fillRect(0, 0, width, height, bgColor); 117 painter->fillRect(0, 0, width, height, bgColor);
119 } 118 }
120 119
121 if(defaultStatusBar)
122 painter->fillRect(QRectF(0, 0, width, 8), statusBarTexture);
123} 120}
124 121
125void RBScreen::loadViewport(QString name, RBViewport *view) 122void RBScreen::loadViewport(QString name, RBViewport *view)
diff --git a/utils/themeeditor/graphics/rbscreen.h b/utils/themeeditor/graphics/rbscreen.h
index 70df399b34..b472e8eae4 100644
--- a/utils/themeeditor/graphics/rbscreen.h
+++ b/utils/themeeditor/graphics/rbscreen.h
@@ -84,8 +84,6 @@ public:
84 } 84 }
85 } 85 }
86 86
87 void disableStatusBar(){ defaultStatusBar = false; }
88 void enableStatusBar(){ defaultStatusBar = true; }
89 87
90private: 88private:
91 int width; 89 int width;
@@ -104,10 +102,6 @@ private:
104 QList<QString> displayedViewports; 102 QList<QString> displayedViewports;
105 103
106 RBAlbumArt* albumArt; 104 RBAlbumArt* albumArt;
107
108 bool defaultStatusBar;
109 QPixmap statusBarTexture;
110
111}; 105};
112 106
113#endif // RBSCREEN_H 107#endif // RBSCREEN_H