Fixed ip highlighting

This commit is contained in:
Jindra Petřík
2015-11-17 17:48:06 +01:00
parent b8268c5403
commit bb37910cce
10 changed files with 138 additions and 69 deletions

View File

@@ -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);
}
}
);