From 969fb3ada1ef98ad9573c98df1fbec15d09cae35 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Tue, 17 Jan 2017 15:57:21 +0100 Subject: Removed window/title config --- src/mainwindow.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/mainwindow.cpp') 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() -- cgit v1.2.1