Skip to content

Commit 69b4ec7

Browse files
committed
increase width of labels so they don't get clipped
1 parent 66738ca commit 69b4ec7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/resources/fxml/rgb_renderer.fxml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<StackPane fx:controller="com.esri.samples.raster.rgb_renderer.RgbRendererController" xmlns:fx="http://javafx.com/fxml"
2525
stylesheets="/css/style.css">
2626
<MapView fx:id="mapView"/>
27-
<VBox StackPane.alignment="TOP_LEFT" maxWidth="300" maxHeight="50" styleClass="panel-region" spacing="10">
27+
<VBox StackPane.alignment="TOP_LEFT" maxWidth="320" maxHeight="50" styleClass="panel-region" spacing="10">
2828
<HBox spacing="10">
2929
<Label text="Stretch type"/>
3030
<ComboBox fx:id="stretchTypeComboBox"/>
@@ -42,7 +42,7 @@
4242
</VBox>
4343
<!--Min/Max-->
4444
<GridPane fx:id="minMaxGroup" hgap="10" vgap="10" managed="${minMaxGroup.visible}">
45-
<Label text="R" GridPane.rowIndex="0" GridPane.columnIndex="0"/>
45+
<Label text="R" GridPane.rowIndex="0" GridPane.columnIndex="0" minWidth="15"/>
4646
<Spinner fx:id="minRedSpinner" min="0" max="255" initialValue="0" editable="true" GridPane.rowIndex="0"
4747
GridPane.columnIndex="1"/>
4848
<Spinner fx:id="maxRedSpinner" max="255" initialValue="255" editable="true" GridPane.rowIndex="0"

0 commit comments

Comments
 (0)