Skip to content

Commit

Permalink
Fix table view columns resize
Browse files Browse the repository at this point in the history
Updated README
  • Loading branch information
Anthony committed Aug 18, 2017
1 parent 8e7bdbe commit 15930d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PomDependencyChecker (Java version)
PomDependencyChecker
====================

Pom Dependency Checker is a tool, to verify if maven dependencies present in your pom.xml file are up to date.
Expand Down
8 changes: 4 additions & 4 deletions src/main/resources/MainView.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
<Separator layoutX="8.0" layoutY="67.0" prefHeight="4.0" prefWidth="585.0" />
<TableView fx:id="dependenciesTable" layoutY="72.0" prefHeight="328.0" prefWidth="600.0">
<columns>
<TableColumn fx:id="groupIdColumn" prefWidth="143.0" resizable="false" text="Group ID" />
<TableColumn fx:id="artifactIdColumn" minWidth="7.0" prefWidth="107.0" resizable="false" text="Artifact ID" />
<TableColumn fx:id="versionColumn" minWidth="3.0" prefWidth="162.0" resizable="false" text="Version" />
<TableColumn fx:id="repoVersionColumn" minWidth="3.0" prefWidth="171.0" resizable="false" text="Repo Version" />
<TableColumn fx:id="groupIdColumn" prefWidth="143.0" text="Group ID" />
<TableColumn fx:id="artifactIdColumn" minWidth="7.0" prefWidth="107.0" text="Artifact ID" />
<TableColumn fx:id="versionColumn" minWidth="3.0" prefWidth="162.0" text="Version" />
<TableColumn fx:id="repoVersionColumn" minWidth="3.0" prefWidth="171.0" text="Repo Version" />
</columns>
<columnResizePolicy>
<TableView fx:constant="CONSTRAINED_RESIZE_POLICY" />
Expand Down

0 comments on commit 15930d8

Please sign in to comment.