GTreeView: Always repaint in response to did_update_model()

This could definitely be more efficient, but this is more correct than
doing nothing at all. :^)
This commit is contained in:
Andreas Kling 2019-11-11 19:11:55 +01:00
commit 3ef287eb9f
Notes: sideshowbarker 2024-07-19 11:15:22 +09:00

View file

@ -244,6 +244,7 @@ void GTreeView::did_update_model()
{
GAbstractView::did_update_model();
update_content_size();
update();
}
void GTreeView::did_update_selection()