X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/047f95bce523792e6e0f633262e62102c867a595..8e5a23b9c8d3aa88fe21b4792b93c5da6f1aaa84:/PuzzleApplet.java diff --git a/PuzzleApplet.java b/PuzzleApplet.java index 305bae0..82fab78 100644 --- a/PuzzleApplet.java +++ b/PuzzleApplet.java @@ -307,7 +307,7 @@ public class PuzzleApplet extends JApplet implements Runtime.CallJavaCB { int left = arg2, right = arg2 + xarg2; int top = arg3, bottom = arg3 + xarg3; int width = getWidth(), height = getHeight(); - gg.setColor(Color.black); + gg.setColor(colors != null ? colors[0] : Color.black); gg.fillRect(0, 0, left, height); gg.fillRect(right, 0, width-right, height); gg.fillRect(0, 0, width, top);