From a3a3a8499f0306f0ab13bb0d548435ac5e7b5307 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Wed, 3 Oct 2018 17:51:49 +0200 Subject: [PATCH] Fix a bug : resize date column for new operations (can be bold while other are not) --- src/view/grid/GridAccount.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/view/grid/GridAccount.cpp b/src/view/grid/GridAccount.cpp index ef86e82..67bb70e 100644 --- a/src/view/grid/GridAccount.cpp +++ b/src/view/grid/GridAccount.cpp @@ -502,6 +502,7 @@ void GridAccount::InsertOperation(User* user, Operation& op, int line, bool fix, resizeColumnToContents(TREE); resizeColumnToContents(CATEGORY); resizeColumnToContents(TAG); + resizeColumnToContents(OP_DATE); resizeColumnToContents(ACCOUNT); } }