diff options
author | Sven Gothel <[email protected]> | 2023-02-17 15:08:36 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-02-17 15:08:36 +0100 |
commit | bff89da495f45d39eed57318666f2f31cce1043a (patch) | |
tree | 7e783ecf3d11a7c237fc1aae3641cc640b1d23de /src/test/com | |
parent | 26f66b4d18d8e148ece2af57ce39e9b4a5d5b1fb (diff) |
Graph RoundButton: setDimension -> setSize
Diffstat (limited to 'src/test/com')
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/graph/demos/ui/RoundButton.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/graph/demos/ui/RoundButton.java b/src/test/com/jogamp/opengl/test/junit/graph/demos/ui/RoundButton.java index e6a95d880..7e096f46c 100644 --- a/src/test/com/jogamp/opengl/test/junit/graph/demos/ui/RoundButton.java +++ b/src/test/com/jogamp/opengl/test/junit/graph/demos/ui/RoundButton.java @@ -64,7 +64,7 @@ public abstract class RoundButton extends UIShape { public final float getCorner() { return corner; } - public void setDimension(final float width, final float height) { + public void setSize(final float width, final float height) { this.width = width; this.height = height; markShapeDirty(); |