diff --git a/ChangeLog b/ChangeLog index 1687ac9..e5f63d6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -v0.7 (11/03/2018) +v0.7 (25/03/2018) ** User ** Set background calendar color to red or yellow when one account is negative or less than 200€ (configurable) Add start date and end date for accounts, so don't need to hide it when it's closed @@ -26,6 +26,8 @@ v0.7 (11/03/2018) Prevent integer overflow when computing percents in CostRepartitionBanner Fix some bugs in yearTo selection & fill in GenerateDialog Don't count virtual operations in check mode + Bad account updated when it's changed on MainPanel + v0.6 (08/10/2016) ** User ** diff --git a/TODO b/TODO index 7a02502..12d9562 100644 --- a/TODO +++ b/TODO @@ -18,7 +18,6 @@ More translations Printing (maybe in xml/html) Refactor web view code Plugins ? -Qt 5 =============================================================== Will not be implemented diff --git a/src/view/AccountPanel.cpp b/src/view/AccountPanel.cpp index b6e07e2..cc6ee51 100644 --- a/src/view/AccountPanel.cpp +++ b/src/view/AccountPanel.cpp @@ -785,7 +785,7 @@ void AccountPanel::OnAccountModified(int row, int column) { User* user = _kiss->GetUser(); int amount; - int id = user->GetAccountId(_accounts[row]); + int id = user->GetAccountId(_accountsGrid->item(row, ACCOUNT_NAME)->text()); if (_inModification || column != ACCOUNT_INIT) return;