diff -r 5028c1c4c526 -r ac216a75ca9b src/PrinterDialog.cpp --- a/src/PrinterDialog.cpp Fri Jan 13 15:08:57 2023 +0100 +++ b/src/PrinterDialog.cpp Sat Jan 14 11:34:51 2023 +0100 @@ -1269,9 +1269,9 @@ y += 25; painter.fillRect( 20, y, 715, 20, c_line1); painter.drawText( 20, y+4, 230, 20, Qt::AlignLeft, tr("Chiller and trub loss")); - painter.drawText(250, y+4, 200, 20, Qt::AlignLeft, QString("%1 L").arg(product->eq_trub_chiller_loss, 1, 'f', 1)); + painter.drawText(250, y+4, 200, 20, Qt::AlignLeft, QString("%1 L").arg(product->eq_trub_loss, 1, 'f', 1)); painter.drawText(450, y+4, 200, 20, Qt::AlignLeft, QString("%1 L").arg(product->brew_fermenter_tcloss, 1, 'f', 1)); - painter.drawText(650, y+4, 85, 20, Qt::AlignLeft, strDiff(product->eq_trub_chiller_loss, product->brew_fermenter_tcloss, 1, " L")); + painter.drawText(650, y+4, 85, 20, Qt::AlignLeft, strDiff(product->eq_trub_loss, product->brew_fermenter_tcloss, 1, " L")); y += 20; painter.fillRect( 20, y, 715, 20, c_line1); painter.drawText( 20, y+4, 230, 20, Qt::AlignLeft, tr("Top up water")); @@ -1281,9 +1281,9 @@ y += 20; painter.fillRect( 20, y, 715, 20, c_line1); painter.drawText( 20, y+4, 230, 20, Qt::AlignLeft, tr("Fermenter volume")); - painter.drawText(250, y+4, 200, 20, Qt::AlignLeft, QString("%1 L").arg(product->batch_size - product->eq_trub_chiller_loss - product->boil_absorb, 1, 'f', 1)); + painter.drawText(250, y+4, 200, 20, Qt::AlignLeft, QString("%1 L").arg(product->batch_size - product->eq_trub_loss - product->boil_absorb, 1, 'f', 1)); painter.drawText(450, y+4, 200, 20, Qt::AlignLeft, QString("%1 L").arg(product->brew_fermenter_volume, 1, 'f', 1)); - painter.drawText(650, y+4, 85, 20, Qt::AlignLeft, strDiff(product->batch_size - product->eq_trub_chiller_loss - product->boil_absorb, product->brew_fermenter_volume, 1, " L")); + painter.drawText(650, y+4, 85, 20, Qt::AlignLeft, strDiff(product->batch_size - product->eq_trub_loss - product->boil_absorb, product->brew_fermenter_volume, 1, " L")); y += 20; painter.fillRect( 20, y, 715, 20, c_line1); painter.drawText( 20, y+4, 230, 20, Qt::AlignLeft, tr("Fermenter density"));