Switching sessions via combo box.

This commit is contained in:
Jindra Petřík
2026-02-15 17:41:08 +01:00
parent 3a44891b26
commit f198f86067
9 changed files with 172 additions and 34 deletions

View File

@@ -3161,7 +3161,7 @@ public class Main {
if (Main.getDebugHandler().getNumberOfPausedSessions() > 1
&& Main.getCurrentDebugSession() != session) {
Logger.getLogger(Main.class.getName()).log(Level.INFO, "Another SWF ({0}) has reached breakpoint meanwhile", swf.toString());
Logger.getLogger(Main.class.getName()).log(Level.INFO, "Another SWF ({0}) has reached breakpoint meanwhile", swf == null ? "unknown" : swf.toString());
mainFrame.getPanel().refreshBreakPoints();
return;
}