Skip to content

Commit 115169b

Browse files
committed
Make explorer window wider
1 parent 8ebc655 commit 115169b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/resources/com/github/introfog/gitwave/view/explorer.fxml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<?import javafx.scene.control.TableColumn?>
44
<?import javafx.scene.control.TableView?>
55
<?import javafx.scene.layout.AnchorPane?>
6-
<AnchorPane fx:id="anchor" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="275.0" prefWidth="600.0" style="-fx-font-family: verdana; -fx-font-size: 12;" xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.github.introfog.gitwave.controller.ExploreController">
6+
<AnchorPane fx:id="anchor" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="275.0" prefWidth="800.0" style="-fx-font-family: verdana; -fx-font-size: 12;" xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.github.introfog.gitwave.controller.ExploreController">
77
<children>
88
<TableView fx:id="commandsTable" onMouseClicked="#mouseClick" prefHeight="223.0" prefWidth="600.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
99
<columns>
10-
<TableColumn minWidth="100.0" prefWidth="-1.0" text="Command" />
11-
<TableColumn minWidth="100.0" prefWidth="-1.0" text="Description" />
10+
<TableColumn minWidth="100.0" prefWidth="468.0" text="Command" />
11+
<TableColumn minWidth="100.0" prefWidth="300.0" text="Description" />
1212
<TableColumn editable="false" maxWidth="30.0" minWidth="30.0" prefWidth="30.0" resizable="false" sortable="false" />
1313
</columns>
1414
<columnResizePolicy>

0 commit comments

Comments
 (0)