From 3ef287eb9f673f6cc10cae5f7d249c0083533ee9 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 11 Nov 2019 19:11:55 +0100 Subject: [PATCH] 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. :^) --- Libraries/LibGUI/GTreeView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Libraries/LibGUI/GTreeView.cpp b/Libraries/LibGUI/GTreeView.cpp index e5a3fea5b2..29bdb05743 100644 --- a/Libraries/LibGUI/GTreeView.cpp +++ b/Libraries/LibGUI/GTreeView.cpp @@ -244,6 +244,7 @@ void GTreeView::did_update_model() { GAbstractView::did_update_model(); update_content_size(); + update(); } void GTreeView::did_update_selection()