Skip to content

Commit aac18f1

Browse files
committed
Make VBox wider to stop text truncation
1 parent e77fb79 commit aac18f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/esri/samples/scene/choose_camera_controller/ChooseCameraControllerSample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public void start(Stage stage){
140140
VBox controlsVBox = new VBox(10);
141141
controlsVBox.setBackground(new Background(new BackgroundFill(Paint.valueOf("rgba(0, 0, 0, 0.3)"), CornerRadii.EMPTY, Insets.EMPTY)));
142142
controlsVBox.setPadding(new Insets(10.0));
143-
controlsVBox.setMaxSize(250, 80);
143+
controlsVBox.setMaxSize(300, 80);
144144
controlsVBox.getStyleClass().add("panel-region");
145145
// add radio buttons to the control panel
146146
controlsVBox.getChildren().addAll(orbitAeroplane, orbitLocation, globeCamera);

0 commit comments

Comments
 (0)