aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
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()