Fixed: #1670 Parent component/window of dialogs not properly set

This commit is contained in:
Jindra Petřík
2021-04-05 16:56:59 +02:00
parent b5aee8412b
commit a7989d2d02
45 changed files with 351 additions and 253 deletions
@@ -240,7 +240,7 @@ public class DebuggerTools {
public static void debuggerShowLog() {
initDebugger();
if (Main.debugDialog == null) {
Main.debugDialog = new DebugLogDialog(debugger);
Main.debugDialog = new DebugLogDialog(Main.getDefaultDialogsOwner(), debugger);
}
Main.debugDialog.setVisible(true);
}