Bug 796083 - Reconcile view toggle not being drawn correctly

Out of site toggles on selected rows may not appear correctly drawn so
queue a draw for the tree view widget after the model has been updated.
This commit is contained in:
Robert Fewell 2018-05-31 12:02:28 +01:00
parent 5ff642e3a3
commit f77e6e34c4

View File

@ -670,6 +670,9 @@ gnc_reconcile_view_set_list ( GNCReconcileView *view, gboolean reconcile)
}
gtk_tree_path_free(node->data);
}
// Out of site toggles on selected rows may not appear correctly drawn so
// queue a draw for the treeview widget
gtk_widget_queue_draw (GTK_WIDGET(qview));
g_list_free(list_of_rows);
}