Skip to content

Commit

Permalink
Fix default shape of AbstractRegionFigure.
Browse files Browse the repository at this point in the history
  • Loading branch information
Werner Randelshofer committed Apr 2, 2024
1 parent 8c92a38 commit 8eb0e00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public abstract class AbstractRegionFigure extends AbstractLeafFigure
public static final @NonNull CssRectangle2DStyleableMapAccessor BOUNDS = RectangleFigure.BOUNDS;
public static final @NonNull CssSizeStyleableKey HEIGHT = RectangleFigure.HEIGHT;
public static final @NonNull NullableFXPathElementsStyleableKey SHAPE = new NullableFXPathElementsStyleableKey("shape",
VectorList.of(new MoveTo(0, 0), new HLineTo(1), new VLineTo(-1), new HLineTo(-1), new ClosePath()));
VectorList.of(new MoveTo(0, 0), new HLineTo(1), new VLineTo(1), new HLineTo(0), new ClosePath()));
public static final @NonNull CssSizeStyleableKey WIDTH = RectangleFigure.WIDTH;
public static final @NonNull CssSizeStyleableKey X = RectangleFigure.X;
public static final @NonNull CssSizeStyleableKey Y = RectangleFigure.Y;
Expand Down

0 comments on commit 8eb0e00

Please sign in to comment.