diff options
| author | Robert Bieber <robby@bieberphoto.com> | 2010-06-24 07:59:41 +0000 |
|---|---|---|
| committer | Robert Bieber <robby@bieberphoto.com> | 2010-06-24 07:59:41 +0000 |
| commit | 1ae6ee263b9ef6f356760002f3f02197927a963b (patch) | |
| tree | c9fec66fd676f421e22554f0b51a3a4a2f9ffab8 /utils/themeeditor/gui/editorwindow.cpp | |
| parent | 103eabd31fb4a5b21e183a7a081ad204720e0eb0 (diff) | |
| download | rockbox-1ae6ee263b9ef6f356760002f3f02197927a963b.zip rockbox-1ae6ee263b9ef6f356760002f3f02197927a963b.tar.gz rockbox-1ae6ee263b9ef6f356760002f3f02197927a963b.tar.bz2 rockbox-1ae6ee263b9ef6f356760002f3f02197927a963b.tar.xz | |
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
Diffstat (limited to 'utils/themeeditor/gui/editorwindow.cpp')
| -rw-r--r-- | utils/themeeditor/gui/editorwindow.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/themeeditor/gui/editorwindow.cpp b/utils/themeeditor/gui/editorwindow.cpp index 2bd3b53..1aec46a 100644 --- a/utils/themeeditor/gui/editorwindow.cpp +++ b/utils/themeeditor/gui/editorwindow.cpp @@ -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() |