1
0
Fork 0
forked from len0rd/rockbox

Theme Editor: Fixed bug that crashed conditionals nested in sublines, began work on making progress bars implement RBMovable

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27714 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Bieber 2010-08-05 08:49:34 +00:00
parent 265ee156f2
commit f657e49103
3 changed files with 16 additions and 2 deletions

View file

@ -27,7 +27,7 @@
RBProgressBar::RBProgressBar(RBViewport *parent, const RBRenderInfo &info,
int paramCount, skin_tag_parameter *params,
bool pv)
:QGraphicsItem(parent)
:RBMovable(parent)
{
/* First we set everything to defaults */
bitmap = 0;
@ -117,4 +117,11 @@ void RBProgressBar::paint(QPainter *painter,
{
painter->fillRect(size, color);
}
RBMovable::paint(painter, option, widget);
}
void RBProgressBar::saveGeometry()
{
}