Skip to content

Commit 3552069

Browse files
author
Martin Plieske
committed
added row to gridPane with info label for description
1 parent cd4e588 commit 3552069

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

src/main/resources/layouts/manage-project.fxml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<?import javafx.scene.layout.GridPane?>
1212
<?import javafx.scene.layout.RowConstraints?>
1313

14-
<GridPane fx:id="grid" hgap="5.0" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" vgap="5.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8.0.171" fx:controller="de.doubleslash.keeptime.view.ManageProjectController">
14+
<GridPane fx:id="grid" hgap="5.0" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" vgap="5.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.doubleslash.keeptime.view.ManageProjectController">
1515
<columnConstraints>
1616
<ColumnConstraints hgrow="SOMETIMES" />
1717
<ColumnConstraints hgrow="SOMETIMES" />
@@ -23,18 +23,20 @@
2323
<RowConstraints vgrow="SOMETIMES" />
2424
<RowConstraints vgrow="SOMETIMES" />
2525
<RowConstraints vgrow="SOMETIMES" />
26+
<RowConstraints vgrow="SOMETIMES" />
2627
</rowConstraints>
2728
<children>
2829
<Label text="Name:" />
29-
<Label text="Color:" GridPane.rowIndex="2" />
30-
<Label text="IsWork:" GridPane.rowIndex="3" />
31-
<Label text="SortIndex:" GridPane.rowIndex="4" />
30+
<Label text="Color:" GridPane.rowIndex="3" />
31+
<Label text="IsWork:" GridPane.rowIndex="4" />
32+
<Label text="SortIndex:" GridPane.rowIndex="5" />
3233
<Label text="Description:" GridPane.rowIndex="1" />
3334
<TextField fx:id="nameTextField" GridPane.columnIndex="1" />
34-
<ColorPicker fx:id="textFillColorPicker" GridPane.columnIndex="1" GridPane.rowIndex="2" />
35-
<CheckBox fx:id="isWorkCheckBox" mnemonicParsing="false" GridPane.columnIndex="1" GridPane.rowIndex="3" />
36-
<Spinner fx:id="sortIndexSpinner" GridPane.columnIndex="1" GridPane.rowIndex="4" />
35+
<ColorPicker fx:id="textFillColorPicker" GridPane.columnIndex="1" GridPane.rowIndex="3" />
36+
<CheckBox fx:id="isWorkCheckBox" mnemonicParsing="false" GridPane.columnIndex="1" GridPane.rowIndex="4" />
37+
<Spinner fx:id="sortIndexSpinner" GridPane.columnIndex="1" GridPane.rowIndex="5" />
3738
<TextArea fx:id="descriptionTextArea" prefHeight="80.0" prefWidth="200.0" GridPane.columnIndex="1" GridPane.rowIndex="1" />
39+
<Label text="Description will be matched at search." GridPane.columnIndex="1" GridPane.rowIndex="2" />
3840
</children>
3941
<padding>
4042
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />

0 commit comments

Comments
 (0)