Painting underline fixes, Goto declaration fix (also freezing)

This commit is contained in:
Jindra Petřík
2025-05-30 10:44:32 +02:00
parent 3254e192c4
commit 3c0db47094
6 changed files with 316 additions and 209 deletions
@@ -1040,7 +1040,7 @@ public class DecompiledEditorPane extends DebuggableEditorPane implements CaretL
}
@Override
public synchronized void setText(String t) {
public void setText(String t) {
super.setText(t);
setCaretPosition(0);
}
@@ -1076,7 +1076,7 @@ public class DecompiledEditorPane extends DebuggableEditorPane implements CaretL
}
@Override
public synchronized void setCaretPosition(int position) {
public void setCaretPosition(int position) {
super.setCaretPosition(position);
}
}