Theme Editor: Fixed some resource alias issues, implemented device configuration panel that loads options from a text file

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27102 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Bieber 2010-06-24 07:59:41 +00:00
parent 103eabd31f
commit 1ae6ee263b
9 changed files with 257 additions and 145 deletions

View file

@ -144,6 +144,10 @@ void EditorWindow::setupUI()
viewer = new SkinViewer(this);
ui->skinPreviewLayout->addWidget(viewer);
/* Positioning the device settings dialog */
QPoint thisPos = pos();
deviceConfig.move(thisPos.x() + width() / 4, thisPos.y() + height() / 4);
}
void EditorWindow::setupMenus()