Window.nonBlockingForm active status was not being tested correctly. Was causing unexpected fail on second attempt to show form

This commit is contained in:
DaveDubUK 2014-12-16 13:20:11 +00:00
parent f987f77094
commit cd95f7bd23

View file

@ -200,7 +200,7 @@ void WindowScriptingInterface::showNonBlockingForm(const QString& title, QScript
}
// what should we do if someone calls us while we still think we have a dialog showing???
if (_editDialog) {
if (_nonBlockingFormActive) {
qDebug() << "Show Non-Blocking Form called when form already active.";
return;
}