diff options
Diffstat (limited to 'src/demos')
-rw-r--r-- | src/demos/com/jogamp/opengl/demos/graph/ui/UISceneDemo20.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/demos/com/jogamp/opengl/demos/graph/ui/UISceneDemo20.java b/src/demos/com/jogamp/opengl/demos/graph/ui/UISceneDemo20.java index beda2d528..56aeb861c 100644 --- a/src/demos/com/jogamp/opengl/demos/graph/ui/UISceneDemo20.java +++ b/src/demos/com/jogamp/opengl/demos/graph/ui/UISceneDemo20.java @@ -498,7 +498,7 @@ public class UISceneDemo20 implements GLEventListener { button.addMouseListener(dragZoomRotateListener); buttonsLeft.addShape(button); - button = new Button(renderModes, fontButtons, "Show fps", buttonLWidth, buttonLHeight); + button = new Button(renderModes, fontButtons, "Show fps", "Hide fps", buttonLWidth, buttonLHeight, Button.DEFAULT_LABEL_ZOFFSET); button.setName(BUTTON_FPS); button.setToggleable(true); button.setToggle(fpsLabel.isEnabled()); @@ -1125,6 +1125,7 @@ public class UISceneDemo20 implements GLEventListener { labels[currentText].setScale(sceneHeight, sceneHeight, 1f); labels[currentText].setColor(0.1f, 0.1f, 0.1f, 1.0f); labels[currentText].setEnabled(enableOthers); + labels[currentText].setFixedARatioResize(true); labels[currentText].validate(gl); labels[currentText].move(dxMiddle, dyTop - jogampLabel.getScaledLineHeight() |