Farb-Ebene erlaubt Farbwechsel

This commit is contained in:
ngb
2022-01-02 22:12:36 +01:00
parent ba9d3e9fe3
commit c6e3a3ac82

View File

@@ -9,6 +9,11 @@ public class ColorLayer extends Layer {
clear();
}
public void setColor( Color color ) {
background = color;
clear();
}
@Override
public void clear() {
drawing.setColor(background.getColor());