Tests - fixes related to recent dialog actions update

This commit is contained in:
dragonmacher 2020-03-10 16:29:28 -04:00
parent cd084aee7b
commit 6b468e196a
9 changed files with 55 additions and 43 deletions

View file

@ -1710,10 +1710,10 @@ public class DockingWindowManager implements PropertyChangeListener, Placeholder
};
if (provider.isModal()) {
SystemUtilities.runSwingNow(r);
Swing.runNow(r);
}
else {
SystemUtilities.runIfSwingOrPostSwingLater(r);
Swing.runIfSwingOrRunLater(r);
}
}