only say to set image if image is not set

This commit is contained in:
lostjared
2018-08-22 17:25:51 -07:00
parent 4428baa9d1
commit 9956961cb3
2 changed files with 2 additions and 2 deletions

View File

@@ -631,7 +631,7 @@ void AC_MainWindow::addClicked() {
stream << "Added Filter: " << filters->currentText() << "\n";
Log(qs);
std::string text = filters->currentText().toStdString();
if(text.find("Image") != std::string::npos)
if(blend_set == false && text.find("Image") != std::string::npos)
Log(tr("Set an Image to use this filter\n"));
else if(text.find("SubFilter") != std::string::npos)
Log(tr("Set a SubFilter to use this filter\n"));