src/EditProduct.cpp

changeset 191
7446ee2fb427
parent 190
bb6c06910f0f
child 194
ea8cce5e7eb9
--- a/src/EditProduct.cpp	Tue May 03 20:05:04 2022 +0200
+++ b/src/EditProduct.cpp	Tue May 03 21:37:12 2022 +0200
@@ -1100,11 +1100,11 @@
 	return;
     }
 
-    qDebug() << "calcSupplies() f:" << product->fermentables_ok /*<< "h:" << product->hops_ok << "m:" << product->miscs_ok << "y:" << product->yeasts_ok << "w:" << product->waters_ok*/;
-    if (product->fermentables_ok /*&& product->hops_ok && product->miscs_ok && product->yeasts_ok && product->waters_ok */) {
+    qDebug() << "calcSupplies() f:" << product->fermentables_ok << "h:" << product->hops_ok /*<< "m:" << product->miscs_ok << "y:" << product->yeasts_ok << "w:" << product->waters_ok*/;
+    if (product->fermentables_ok && product->hops_ok /*&& product->miscs_ok && product->yeasts_ok && product->waters_ok */) {
 	ui->ok_pmptIcon->setPixmap(QPixmap(QString::fromUtf8(":/icons/silk/tick.png")));
     } else {
-	ui->ok_pmptIcon->setPixmap(QPixmap(QString::fromUtf8(":/icons/silk/error.png")));
+	ui->ok_pmptIcon->setPixmap(QPixmap(QString::fromUtf8(":/icons/silk/cancel.png")));
     }
 }
 
@@ -1122,6 +1122,7 @@
     refreshMashs();
     refreshWaters();
     calcWater();
+    calcSupplies();
 }
 
 

mercurial