diff options
author | Sven Gothel <[email protected]> | 2023-03-19 08:14:25 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-03-19 08:14:25 +0100 |
commit | d8339b73322e31f9f6624137da30d53a626001c3 (patch) | |
tree | f47953e7c6c0e172d6c1cb893359da1ecad34617 /src/graphui/classes/com | |
parent | 37224b6c84a66788813856f806a727d73991f546 (diff) |
Graph UI: Apply API changes to demos *WIP* (not all working yet, but compile clean)
Diffstat (limited to 'src/graphui/classes/com')
-rw-r--r-- | src/graphui/classes/com/jogamp/graph/ui/gl/shapes/Button.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphui/classes/com/jogamp/graph/ui/gl/shapes/Button.java b/src/graphui/classes/com/jogamp/graph/ui/gl/shapes/Button.java index e108be53e..226477f80 100644 --- a/src/graphui/classes/com/jogamp/graph/ui/gl/shapes/Button.java +++ b/src/graphui/classes/com/jogamp/graph/ui/gl/shapes/Button.java @@ -114,7 +114,7 @@ public class Button extends RoundButton { final float[] ctr = box.getCenter(); final float[] ltx = new float[] { ctr[0] - lctr[0], ctr[1] - lctr[1], 0f }; - if( DRAW_DEBUG_BOX ) { + if( true || DRAW_DEBUG_BOX ) { System.err.println("RIButton: dim "+width+" x "+height+", spacing "+spacingX+", "+spacingY); System.err.println("RIButton: net-text "+lw+" x "+lh); System.err.println("RIButton: shape "+box); |