1
0
Fork 0
forked from len0rd/rockbox

Theme Editor: Added album art display

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27199 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Bieber 2010-06-30 19:35:00 +00:00
parent 3e599f4d37
commit 8114979e8e
10 changed files with 207 additions and 17 deletions

View file

@ -28,7 +28,8 @@
RBScreen::RBScreen(const RBRenderInfo& info, bool remote,
QGraphicsItem *parent)
:QGraphicsItem(parent), backdrop(0), project(project)
:QGraphicsItem(parent), backdrop(0), project(project),
albumArt(0)
{
if(remote)
@ -80,6 +81,9 @@ RBScreen::~RBScreen()
if(backdrop)
delete backdrop;
if(albumArt)
delete albumArt;
QMap<int, RBFont*>::iterator i;
for(i = fonts.begin(); i != fonts.end(); i++)
delete (*i);