summaryrefslogtreecommitdiff
path: root/src/gui/panels/errors.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-02-18 22:14:12 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-02-18 22:14:12 (GMT)
commit738daf23eec2c114d456d13e88c51029f891fbc2 (patch)
tree8adfcda9f2be6b6adb17d894c6ef2839cd6ebd89 /src/gui/panels/errors.c
parent1eadace09a51cd93aaf78d91f0d601730728dfd5 (diff)
Hidden transitions when updating panel content.
Diffstat (limited to 'src/gui/panels/errors.c')
-rw-r--r--src/gui/panels/errors.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/panels/errors.c b/src/gui/panels/errors.c
index 5b996e5..2bfe250 100644
--- a/src/gui/panels/errors.c
+++ b/src/gui/panels/errors.c
@@ -1054,6 +1054,8 @@ static void g_error_panel_introduce(const GErrorPanel *panel, unsigned int uid,
/* Basculement de l'affichage hors ligne */
+ g_panel_item_switch_to_updating_mask(G_PANEL_ITEM(panel));
+
builder = G_PANEL_ITEM(panel)->builder;
treeview = GTK_TREE_VIEW(gtk_builder_get_object(builder, "treeview"));
@@ -1135,4 +1137,6 @@ static void g_error_panel_conclude(GErrorPanel *panel, unsigned int uid, error_u
g_object_unref(G_OBJECT(data->model));
+ g_panel_item_switch_to_updated_content(G_PANEL_ITEM(panel));
+
}