From 40756646fb3e9fc5bbd2574ab78cc37d383d1b41 Mon Sep 17 00:00:00 2001 From: Philip Lee Date: Tue, 9 Feb 2016 20:46:57 -0800 Subject: [PATCH] Fixes #177: first wort hop adjustment 100x too high --- src/OptionDialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OptionDialog.cpp b/src/OptionDialog.cpp index 010564f3f..264cd8842 100644 --- a/src/OptionDialog.cpp +++ b/src/OptionDialog.cpp @@ -501,10 +501,10 @@ void OptionDialog::showChanges() lineEdit_dbDir->setText(Brewtarget::getUserDataDir()); // The IBU modifications. These will all be calculated from a 60 min boil. This is gonna get confusing. - double amt = Brewtarget::toDouble(Brewtarget::option("mashHopAdjustment",100).toString(), "OptionDialog::showChanges()"); + double amt = Brewtarget::toDouble(Brewtarget::option("mashHopAdjustment",1).toString(), "OptionDialog::showChanges()"); lineEdit_mashHop->setText(amt*100); - amt = Brewtarget::toDouble(Brewtarget::option("firstWortHopAdjustment",100).toString(), "OptionDialog::showChanges()"); + amt = Brewtarget::toDouble(Brewtarget::option("firstWortHopAdjustment",1).toString(), "OptionDialog::showChanges()"); lineEdit_firstWort->setText(amt*100); }