From 2c5f1aa59b47ee27efa77fd08826d52c02fa72d8 Mon Sep 17 00:00:00 2001 From: Robert Fewell <14uBobIT@gmail.com> Date: Mon, 4 Sep 2017 16:00:38 +0100 Subject: [PATCH] Redraw the header after size allocation of the sheet. If the horizontal scrollbar is visible, the header foreground colour is wrong so add a redraw of the header at the end of the allocate. --- gnucash/register/register-gnome/gnucash-sheet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnucash/register/register-gnome/gnucash-sheet.c b/gnucash/register/register-gnome/gnucash-sheet.c index 2b17f76e98..539cb39979 100644 --- a/gnucash/register/register-gnome/gnucash-sheet.c +++ b/gnucash/register/register-gnome/gnucash-sheet.c @@ -1118,7 +1118,7 @@ gnucash_sheet_size_allocate (GtkWidget *widget, GtkAllocation *allocation) gnucash_sheet_show_row (sheet, virt_loc.vcell_loc.virt_row); } - + gnc_header_request_redraw (GNC_HEADER(sheet->header_item)); LEAVE(" "); }