diff -r 810569bfa16b -r add1938ada0a src/PrinterDialog.cpp --- a/src/PrinterDialog.cpp Tue Jun 11 16:47:11 2024 +0200 +++ b/src/PrinterDialog.cpp Tue Jun 11 17:52:12 2024 +0200 @@ -1807,9 +1807,9 @@ /* Boil, how much space do we need */ lines = 0; if (product->boil_time == 0) { - lines = 3; + lines = 5; } else { - lines = 5; + lines = 7; if (product->brew_cooling_method == CHILLER_TYPE_IMMERSION) lines++; for (int i = 0; i < product->fermentables.size(); i++) { @@ -1836,6 +1836,8 @@ checkHeader(&painter, &y, tr("Boil")); if (product->boil_time > 0) { checkLine(&painter, &y, QString(tr("Total boiltime: %1 minutes")).arg(product->boil_time, 1, 'f', 0)); + checkInput(&painter, &y, QString(tr("Check pH between 5.0 and 5.5 after the hot break")), QString(tr("pH"))); + messageInput(&painter, &y, QString(tr("Extra Lactic Acid in the boil")), QString(tr("ml"))); for (int i = product->boil_time; i >= 0; i--) { if (i == 10) { for (int j = 0; j < product->fermentables.size(); j++) {