diff options
Diffstat (limited to 'utils')
-rw-r--r-- | utils/themeeditor/editorwindow.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/themeeditor/editorwindow.cpp b/utils/themeeditor/editorwindow.cpp index 035fe57f2d..93cf3641f0 100644 --- a/utils/themeeditor/editorwindow.cpp +++ b/utils/themeeditor/editorwindow.cpp @@ -57,6 +57,7 @@ void EditorWindow::loadTabFromFile(QString fileName) /* Adding a new document*/ SkinDocument* doc = new SkinDocument(parseStatus, fileName); addTab(doc); + ui->editorTabs->setCurrentWidget(doc); } @@ -169,6 +170,7 @@ void EditorWindow::newTab() { SkinDocument* doc = new SkinDocument(parseStatus); addTab(doc); + ui->editorTabs->setCurrentWidget(doc); } void EditorWindow::shiftTab(int index) |