various improvements

This commit is contained in:
itsmattkc
2018-10-05 00:17:09 +10:00
parent ceb744e589
commit 5f16c1c84f
17 changed files with 172 additions and 123 deletions
+2 -2
View File
@@ -45,7 +45,7 @@ QMainWindow* mainWindow;
QTimer autorecovery_timer;
QString config_dir;
QString appName = "Olive (September 2018 | Alpha)";
QString appName = "Olive (October 2018 | Alpha)";
bool demoNoticeShown = false;
void MainWindow::setup_layout() {
@@ -383,7 +383,7 @@ bool MainWindow::can_close_project() {
void MainWindow::updateTitle(const QString& url) {
project_url = url;
setWindowTitle(appName + " - " + ((project_url.isEmpty()) ? "<untitled>" : project_url));
setWindowTitle(appName + " - " + ((project_url.isEmpty()) ? "<untitled>" : project_url) + "[*]");
}
void MainWindow::closeEvent(QCloseEvent *e) {