aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/qt/follow_stream_dialog.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/qt/follow_stream_dialog.cpp b/ui/qt/follow_stream_dialog.cpp
index 136a8e2595..9fc5d93421 100644
--- a/ui/qt/follow_stream_dialog.cpp
+++ b/ui/qt/follow_stream_dialog.cpp
@@ -305,6 +305,9 @@ void FollowStreamDialog::helpButton()
void FollowStreamDialog::backButton()
{
+ if (terminating_)
+ return;
+
output_filter_ = previous_filter_;
close();
@@ -312,6 +315,9 @@ void FollowStreamDialog::backButton()
void FollowStreamDialog::filterOut()
{
+ if (terminating_)
+ return;
+
output_filter_ = filter_out_filter_;
close();