mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-21 05:15:47 +00:00
Fixed ip highlighting
This commit is contained in:
@@ -257,7 +257,7 @@ public class DebuggerHandler implements DebugConnectionListener {
|
||||
return;
|
||||
}
|
||||
|
||||
String cls = modulePaths.get(message.file).toString();
|
||||
ClassPath cls = modulePaths.get(message.file);
|
||||
Main.startWork(AppStrings.translate("work.breakat") + cls + ":" + message.line, null);
|
||||
|
||||
try {
|
||||
@@ -272,7 +272,7 @@ public class DebuggerHandler implements DebugConnectionListener {
|
||||
} catch (IOException ex) {
|
||||
//ignore
|
||||
}
|
||||
Main.getMainFrame().getPanel().debuggerBreakAt(Main.getMainFrame().getPanel().getCurrentSwf(), cls, message.line);
|
||||
Main.breakAt(cls, message.line);
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user