From 9072c0e4dca7048582bf59f89fca23c3a6a01e86 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Sat, 29 Sep 2001 00:31:59 +0000 Subject: wrap a bonobo_ui_component_freeze/thaw around all of the set_props so they * folder-browser-ui.c (fbui_sensitize_timeout): wrap a bonobo_ui_component_freeze/thaw around all of the set_props so they all update at once. svn path=/trunk/; revision=13245 --- mail/folder-browser-ui.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'mail/folder-browser-ui.c') diff --git a/mail/folder-browser-ui.c b/mail/folder-browser-ui.c index bb07825712..662fd98de3 100644 --- a/mail/folder-browser-ui.c +++ b/mail/folder-browser-ui.c @@ -430,6 +430,8 @@ fbui_sensitize_timeout (gpointer data) GSList *iter; struct sensitize_data *sd; + if (uic) + bonobo_ui_component_freeze (uic, NULL); for (iter = fb->sensitize_changes; iter; iter = iter->next) { sd = (struct sensitize_data *) iter->data; @@ -442,6 +444,8 @@ fbui_sensitize_timeout (gpointer data) fbui_real_sensitize_items (uic, sd->items, sd->enable); g_free (sd); } + if (uic) + bonobo_ui_component_thaw (uic, NULL); g_slist_free (fb->sensitize_changes); fb->sensitize_changes = NULL; -- cgit v1.2.3