From df3d527fde74144a8773e46a4aa0bd91da0ff801 Mon Sep 17 00:00:00 2001 From: Jared Bruni Date: Sat, 28 Aug 2021 14:01:29 -0700 Subject: [PATCH] added subfilter message --- src/main_window.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main_window.cpp b/src/main_window.cpp index 4bac0b7..5a8aa72 100644 --- a/src/main_window.cpp +++ b/src/main_window.cpp @@ -839,7 +839,8 @@ void AC_MainWindow::comboFilterChanged(int) { std::string text = filters->currentText().toStdString(); if(blend_set == false && text.find("Image") != std::string::npos) Log(tr("Set an Image to use this filter\n")); - else if(ac::subfilter == -1 && text.find("SubFilter") != std::string::npos) + + if(ac::subfilter == -1 && text.find("SubFilter") != std::string::npos) Log(tr("Set a SubFilter to use this filter\n")); }