aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/qt/main_window.cpp1
-rw-r--r--ui/qt/main_window.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/ui/qt/main_window.cpp b/ui/qt/main_window.cpp
index 8bfda67c0c..134c0af677 100644
--- a/ui/qt/main_window.cpp
+++ b/ui/qt/main_window.cpp
@@ -328,6 +328,7 @@ MainWindow::MainWindow(QWidget *parent) :
connect(wsApp, SIGNAL(preferencesChanged()), this, SLOT(layoutToolbars()));
connect(wsApp, SIGNAL(preferencesChanged()), this, SLOT(updatePreferenceActions()));
connect(wsApp, SIGNAL(preferencesChanged()), this, SLOT(zoomText()));
+ connect(wsApp, SIGNAL(preferencesChanged()), this, SLOT(setTitlebarForCaptureFile()));
connect(wsApp, SIGNAL(updateRecentItemStatus(const QString &, qint64, bool)), this, SLOT(updateRecentFiles()));
updateRecentFiles();
diff --git a/ui/qt/main_window.h b/ui/qt/main_window.h
index ad483b408c..ce2c2df928 100644
--- a/ui/qt/main_window.h
+++ b/ui/qt/main_window.h
@@ -195,7 +195,6 @@ private:
void initTimePrecisionFormatMenu();
void initFreezeActions();
- void setTitlebarForCaptureFile();
void setTitlebarForCaptureInProgress();
void setMenusForCaptureFile(bool force_disable = false);
void setMenusForCaptureInProgress(bool capture_in_progress = false);
@@ -244,6 +243,7 @@ public slots:
void updatePreferenceActions();
void updateRecentActions();
+ void setTitlebarForCaptureFile();
void setWSWindowTitle(QString title = QString());
void captureCapturePrepared(capture_session *);