From 1ae6ee263b9ef6f356760002f3f02197927a963b Mon Sep 17 00:00:00 2001 From: Robert Bieber Date: Thu, 24 Jun 2010 07:59:41 +0000 Subject: 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 --- utils/themeeditor/gui/editorwindow.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'utils/themeeditor/gui/editorwindow.cpp') 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() -- cgit v1.1