ui: display of project name

* Window title now reads "Coati - Project name".
* Removed file endings in the recent projects list.
* Changed the first line of the project summary to be "Project: Project name" instead of just "Project name".
This commit is contained in:
malte_langkabel
2016-02-17 12:20:36 +01:00
parent 42513fe102
commit 7f33ab37be
4 changed files with 13 additions and 13 deletions
+2 -2
View File
@@ -77,8 +77,8 @@ void Application::loadProject(const FilePath& projectSettingsFilePath, bool forc
updateRecentProjects(projectSettingsFilePath);
m_mainView->setTitle(
projectSettingsFilePath.withoutExtension().fileName()
+ "[" + projectSettingsFilePath.fileName() + "]" + " - Coati");
"Coati - " +
projectSettingsFilePath.fileName());
m_storageCache->clear();
m_componentManager->refreshViews();