mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 04:01:25 +00:00
AS3 XML fix, jump trait fix
This commit is contained in:
@@ -46,7 +46,7 @@ public class ConstructPropTreeItem extends TreeItem {
|
||||
String objstr = object.toString(constants, localRegNames, fullyQualifiedNames);
|
||||
if (!objstr.equals("")) {
|
||||
objstr += ".";
|
||||
}
|
||||
}
|
||||
return hilight("new ") + objstr + propertyName.toString(constants, localRegNames, fullyQualifiedNames) + hilight("(") + argStr + hilight(")");
|
||||
|
||||
}
|
||||
|
||||
@@ -45,7 +45,6 @@ public class ConstructTreeItem extends TreeItem {
|
||||
return object.toString(constants, localRegNames, fullyQualifiedNames);
|
||||
}
|
||||
String obStr = object.toString(constants, localRegNames, fullyQualifiedNames);
|
||||
obStr = "(" + obStr + ")";
|
||||
return hilight("new ") + obStr + hilight("(") + argStr + hilight(")");
|
||||
|
||||
}
|
||||
|
||||
@@ -218,9 +218,7 @@ public class DecompiledEditorPane extends LineMarkedEditorPane implements CaretL
|
||||
new Timer().schedule(new TimerTask() {
|
||||
public void run() {
|
||||
try {
|
||||
ignoreCarret=true;
|
||||
setCaretPosition(pos);
|
||||
ignoreCarret=false;
|
||||
setCaretPosition(pos);
|
||||
} catch (IllegalArgumentException iae) {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user