aboutsummaryrefslogtreecommitdiffstats
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorConfuSomu2022-12-26 22:33:52 -0500
committerConfuSomu2022-12-26 22:33:52 -0500
commitd8c90957841fe714e0cb3b4a7f1c9f1e7afb9dea (patch)
tree81ca74406cc2d0aecc260a096795ec5ed80a3112 /src/mainwindow.h
parentc7b9186ff55cc055ed9d39c4282a2ccba2a87367 (diff)
downloadActorViewer-d8c90957841fe714e0cb3b4a7f1c9f1e7afb9dea.tar
ActorViewer-d8c90957841fe714e0cb3b4a7f1c9f1e7afb9dea.tar.gz
ActorViewer-d8c90957841fe714e0cb3b4a7f1c9f1e7afb9dea.zip
Relist statuses when changing view filters
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 8a14bf8..39ac68c 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -31,13 +31,17 @@ private slots:
void on_actionDirect_messages_triggered(bool checked);
void on_actionOnly_with_attachment_triggered(bool checked);
+ void on_menuView_aboutToHide();
+
private:
void reset_view_filters();
+ void relist_statuses();
Ui::MainWindow *ui;
QString outbox_filename;
ViewTootTypes view_filters;
+ bool view_filters_changed = false;
Archive *data_archive = nullptr;
};