ns-usbloader/src/main/resources/SettingsTab.fxml

22 lines
956 B
Plaintext
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.ScrollPane?>
2019-03-19 03:10:00 +03:00
<?import javafx.scene.control.Separator?>
<?import javafx.scene.layout.VBox?>
2019-08-14 05:37:58 +03:00
<ScrollPane fitToWidth="true" xmlns="http://javafx.com/javafx/8.0.141" xmlns:fx="http://javafx.com/fxml/1" fx:controller="nsusbloader.Controllers.SettingsController">
<VBox spacing="5.0">
2019-03-19 03:10:00 +03:00
<children>
<fx:include fx:id="settingsBlockGeneric" source="SettingsBlockGeneric.fxml"/>
2019-12-21 03:24:31 +03:00
<Separator prefWidth="200.0" />
<fx:include fx:id="settingsBlockGoldleaf" source="SettingsBlockGoldleaf.fxml"/>
2019-12-21 03:24:31 +03:00
<Separator prefWidth="200.0" />
<fx:include fx:id="settingsBlockTinfoil" source="SettingsBlockTinfoil.fxml"/>
2019-03-19 03:10:00 +03:00
</children>
<padding>
<Insets bottom="5.0" left="15.0" right="15.0" top="5.0" />
2019-03-19 03:10:00 +03:00
</padding>
</VBox>
</ScrollPane>