feat(client/scaling): initial implementation

This commit is contained in:
Zhongheng Liu 2026-01-18 14:18:19 +01:00
commit b7bbebe222
Signed by: steven
GPG key ID: F69B980899C1C09D
2 changed files with 1 additions and 3 deletions

View file

@ -41,7 +41,6 @@ public class ScalableRecipeView {
public double getScaledKcal() { public double getScaledKcal() {
return scaledKcal.get(); return scaledKcal.get();
} }
public DoubleProperty scaleProperty() { public DoubleProperty scaleProperty() {
return scale; return scale;
} }
@ -53,7 +52,6 @@ public class ScalableRecipeView {
public ObjectProperty<Recipe> recipeProperty() { public ObjectProperty<Recipe> recipeProperty() {
return recipe; return recipe;
} }
public SimpleDoubleProperty scaledKcalProperty() { public SimpleDoubleProperty scaledKcalProperty() {
return scaledKcal; return scaledKcal;
} }