summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rw-r--r--utils/themeeditor/gui/editorwindow.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/utils/themeeditor/gui/editorwindow.cpp b/utils/themeeditor/gui/editorwindow.cpp
index f76fd8e88b..6bc40fbff6 100644
--- a/utils/themeeditor/gui/editorwindow.cpp
+++ b/utils/themeeditor/gui/editorwindow.cpp
@@ -110,7 +110,7 @@ void EditorWindow::loadConfigTab(ConfigDocument* doc)
110 this, SLOT(tabTitleChanged(QString))); 110 this, SLOT(tabTitleChanged(QString)));
111} 111}
112 112
113void EditorWindow::loadSettings() 113void EditorWindow::loadSettings()
114{ 114{
115 115
116 QSettings settings; 116 QSettings settings;
@@ -918,6 +918,16 @@ void EditorWindow::projectToTop(QString file)
918 918
919void EditorWindow::refreshRecentMenus() 919void EditorWindow::refreshRecentMenus()
920{ 920{
921 /* Clearing any deleted documents */
922 for(int i = 0; i < recentDocs.count(); i++)
923 if(!QFile::exists(recentDocs[i]))
924 recentDocs.removeAt(i--);
925
926 /* Clearing any deleted projects */
927 for(int i = 0; i < recentProjects.count(); i++)
928 if(!QFile::exists(recentProjects[i]))
929 recentProjects.removeAt(i--);
930
921 /* First hiding all the menu items */ 931 /* First hiding all the menu items */
922 for(int i = 0; i < recentDocsMenu.count(); i++) 932 for(int i = 0; i < recentDocsMenu.count(); i++)
923 recentDocsMenu[i]->setVisible(false); 933 recentDocsMenu[i]->setVisible(false);