mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 06:50:46 +00:00
stepping
This commit is contained in:
@@ -69,11 +69,17 @@ public class LineMarkedEditorPane extends UndoFixedEditorPane implements LinkHan
|
||||
|
||||
private Map<Integer, Color> lineColors = new HashMap<>();
|
||||
|
||||
public void clearLineColors() {
|
||||
lineColors.clear();
|
||||
repaint();
|
||||
}
|
||||
|
||||
public void setLineColor(int line, Color color) {
|
||||
lineColors.remove(line);
|
||||
if (color != null) {
|
||||
lineColors.put(line, color);
|
||||
}
|
||||
repaint();
|
||||
}
|
||||
|
||||
public int getLine() {
|
||||
|
||||
Reference in New Issue
Block a user