Forgot a *100 in previous commit
This commit is contained in:
parent
a65ee9c24f
commit
84ea8e618b
|
@ -778,8 +778,7 @@ void AccountPanel::OnAccountModified(int row, int column)
|
||||||
if (_inModification || column != ACCOUNT_INIT) return;
|
if (_inModification || column != ACCOUNT_INIT) return;
|
||||||
|
|
||||||
amount = _accountsGrid->item(row, column)->text().replace(".", "").toInt();
|
amount = _accountsGrid->item(row, column)->text().replace(".", "").toInt();
|
||||||
|
_kiss->SetAccountAmount(id, _curMonth, _curYear, amount);
|
||||||
_kiss->SetAccountAmount(id, _curMonth, _curYear, amount*100);
|
|
||||||
_accountsInitValues[id] = amount;
|
_accountsInitValues[id] = amount;
|
||||||
|
|
||||||
UpdateStats();
|
UpdateStats();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user