mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 05:03:31 +02:00
Window.nonBlockingForm active status was not being tested correctly. Was causing unexpected fail on second attempt to show form
This commit is contained in:
parent
f987f77094
commit
cd95f7bd23
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue