diff options
| author | Aqua-sama <aqua@iserlohn-fortress.net> | 2017-01-17 15:57:21 +0100 |
|---|---|---|
| committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2017-01-17 15:57:21 +0100 |
| commit | 969fb3ada1ef98ad9573c98df1fbec15d09cae35 (patch) | |
| tree | 9588e18d5784f6b5df90fe75fb2ebf9da415aa4e /src | |
| parent | Added About dialog (diff) | |
| download | smolbote-969fb3ada1ef98ad9573c98df1fbec15d09cae35.tar.xz | |
Removed window/title config
Diffstat (limited to 'src')
| -rw-r--r-- | src/mainwindow.cpp | 5 |
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() |
