Skip to content

Commit

Permalink
fix: dialog layout overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
isHarryh committed Sep 9, 2024
1 parent 8183f95 commit 7c4eb24
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions assets/UI/RootModule.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@
fx:controller="cn.harryh.arkpets.controllers.RootModule">

<!-- ********** 1. Main Content ********** -->
<StackPane fx:id="body">
<AnchorPane maxHeight="-Infinity" minHeight="-Infinity" prefHeight="376.0" prefWidth="600.0"
StackPane.alignment="BOTTOM_CENTER">
<StackPane fx:id="body" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" prefHeight="376.0"
prefWidth="600.0" StackPane.alignment="BOTTOM_CENTER">
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity"
prefHeight="376.0" prefWidth="600.0" StackPane.alignment="BOTTOM_CENTER">
<!-- ***** 1.1. Sidebar ***** -->
<Pane id="Sidebar" fx:id="sidebar" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity"
minWidth="-Infinity" prefHeight="376.0" prefWidth="140.0" styleClass="shadowed"
Expand Down

0 comments on commit 7c4eb24

Please sign in to comment.