Skip to content

Commit

Permalink
fix: allow directory stats tabview to grow with window size
Browse files Browse the repository at this point in the history
  • Loading branch information
DropSnorz committed Feb 10, 2024
1 parent 83ab27b commit 1c6ed94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions owlplug-client/src/main/resources/fxml/DirectoryInfoView.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
</children>
</HBox>
<TextField fx:id="directoryPathTextField" editable="false" />
<TabPane prefHeight="270.0" tabClosingPolicy="UNAVAILABLE">
<TabPane tabClosingPolicy="UNAVAILABLE" VBox.vgrow="ALWAYS">
<tabs>
<Tab fx:id="directoryMetricsTab" disable="true" text="Metrics">
<graphic>
Expand All @@ -53,7 +53,7 @@
</image></ImageView>
</graphic>
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
<AnchorPane minHeight="0.0" minWidth="0.0" />
</content>
</Tab>
<Tab fx:id="directoryPluginsTab" text="Plugins">
Expand Down

0 comments on commit 1c6ed94

Please sign in to comment.