aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2017-01-17 15:57:21 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2017-01-17 15:57:21 +0100
commit969fb3ada1ef98ad9573c98df1fbec15d09cae35 (patch)
tree9588e18d5784f6b5df90fe75fb2ebf9da415aa4e /src/mainwindow.cpp
parentAdded About dialog (diff)
downloadsmolbote-969fb3ada1ef98ad9573c98df1fbec15d09cae35.tar.xz
Removed window/title config
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index f97f8b0..6985292 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -179,8 +179,9 @@ void MainWindow::handleUrlUpdated(const QUrl &url)
void MainWindow::handleTitleUpdated(const QString &title)
{
- Settings settings;
- setWindowTitle(title + settings.value("window/title").toString());
+ // For some reason, the long dash gets garbled if read from the settings
+ //setWindowTitle(title + settings.value("window/title").toString());
+ setWindowTitle(title + tr(" — smolbote"));
}
void MainWindow::execProfileEditor()