Fixed sizing of main tab view

This commit is contained in:
Gregory Ballantine 2023-01-18 11:26:58 -05:00
parent 8507221f44
commit 074f7b0a53

View File

@ -83,46 +83,48 @@
</Menu>
</menus>
</MenuBar>
<AnchorPane maxHeight="-1.0" maxWidth="-1.0" prefHeight="-1.0" prefWidth="-1.0" VBox.vgrow="ALWAYS" />
<TabPane prefHeight="376.0" prefWidth="640.0" tabClosingPolicy="UNAVAILABLE">
<tabs>
<Tab text="Overview">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
<children>
<Label fx:id="osInfo" layoutX="14.0" layoutY="43.0" text="OS Info" />
<Label fx:id="overCpuTemp" layoutX="14.0" layoutY="82.0" text="Cpu Temp" />
</children>
</AnchorPane>
</content>
</Tab>
<Tab text="CPU">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
<children>
<Label fx:id="cpuCpuTemp" layoutX="14.0" layoutY="6.0" text="Label" />
<Label fx:id="cpuCpuFreq" layoutX="14.0" layoutY="33.0" text="Label" />
<Label fx:id="cpuCpuMaxFreq" layoutX="14.0" layoutY="61.0" text="Label" />
</children>
</AnchorPane>
</content>
</Tab>
<Tab text="Memory">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
</content>
</Tab>
<Tab text="GPU">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
</content>
</Tab>
<Tab text="OS">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
</content>
</Tab>
</tabs>
</TabPane>
<AnchorPane maxHeight="-1.0" maxWidth="-1.0" prefHeight="-1.0" prefWidth="-1.0" VBox.vgrow="ALWAYS">
<children>
<TabPane prefHeight="376.0" prefWidth="640.0" tabClosingPolicy="UNAVAILABLE" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
<tabs>
<Tab text="Overview">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
<children>
<Label fx:id="osInfo" layoutX="14.0" layoutY="43.0" text="OS Info" />
<Label fx:id="overCpuTemp" layoutX="14.0" layoutY="82.0" text="Cpu Temp" />
</children>
</AnchorPane>
</content>
</Tab>
<Tab text="CPU">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
<children>
<Label fx:id="cpuCpuTemp" layoutX="14.0" layoutY="6.0" text="Label" />
<Label fx:id="cpuCpuFreq" layoutX="14.0" layoutY="33.0" text="Label" />
<Label fx:id="cpuCpuMaxFreq" layoutX="14.0" layoutY="61.0" text="Label" />
</children>
</AnchorPane>
</content>
</Tab>
<Tab text="Memory">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
</content>
</Tab>
<Tab text="GPU">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
</content>
</Tab>
<Tab text="OS">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
</content>
</Tab>
</tabs>
</TabPane>
</children></AnchorPane>
</children>
</VBox>