src/EditProductTab8.cpp

changeset 264
67b5c00dd23c
parent 185
405bb68c1ea4
child 274
33b5a9a42370
--- a/src/EditProductTab8.cpp	Mon Jun 06 21:56:21 2022 +0200
+++ b/src/EditProductTab8.cpp	Tue Jun 07 09:48:35 2022 +0200
@@ -495,6 +495,24 @@
 }
 
 
+void EditProduct::sp_volume_changed(double val)
+{
+    product->sparge_volume = val;
+    ui->brew_spargevolShow->setValue(val);
+    calcSparge();
+    is_changed();
+}
+
+
+void EditProduct::sp_temp_changed(double val)
+{
+    product->sparge_temp = val;
+    ui->brew_spargetempShow->setValue(val);
+    calcSparge();
+    is_changed();
+}
+
+
 void EditProduct::sp_type_changed(int val)
 {
     product->sparge_acid_type = val;

mercurial