chore: move things around

This commit is contained in:
Zhongheng Liu 2026-01-21 15:05:07 +01:00
commit d83494c2a1
Signed by: steven
GPG key ID: F69B980899C1C09D

View file

@ -25,12 +25,15 @@
<Button fx:id="removeRecipeButton" mnemonicParsing="false" onAction="#removeSelectedRecipe" text="Remove Recipe" /> <Button fx:id="removeRecipeButton" mnemonicParsing="false" onAction="#removeSelectedRecipe" text="Remove Recipe" />
<Button fx:id="printRecipeButton" mnemonicParsing="false" onAction="#printRecipe" text="Print Recipe" /> <Button fx:id="printRecipeButton" mnemonicParsing="false" onAction="#printRecipe" text="Print Recipe" />
<Button fx:id="favouriteButton" onAction="#toggleFavourite" text="☆" /> <Button fx:id="favouriteButton" onAction="#toggleFavourite" text="☆" />
<Label>Scale: </Label>
<Spinner fx:id="scaleSpinner" />
<Spinner fx:id="servingsSpinner" />
</HBox> </HBox>
<HBox>
<ComboBox fx:id="langSelector" onAction="#changeLanguage" /> <ComboBox fx:id="langSelector" onAction="#changeLanguage" />
<Label>Scale: </Label>
<Spinner fx:id="scaleSpinner" />
<Label>Servings: </Label>
<Spinner fx:id="servingsSpinner" />
</HBox>
<!-- Ingredients --> <!-- Ingredients -->
<fx:include source="RecipeIngredientList.fxml" fx:id="ingredientList" /> <fx:include source="RecipeIngredientList.fxml" fx:id="ingredientList" />