aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2011-01-19 21:56:35 +0800
committerMilan Crha <mcrha@redhat.com>2011-01-19 21:56:35 +0800
commit3cce94edcbd2c0969e72bdb53dfeefe4d76551f0 (patch)
tree0f93a971763ac65299502b36794ce7b1afa13fb0 /e-util
parenta5bbb0c3a2bcd06cdb3c67082d2971681de5ca43 (diff)
downloadgsoc2013-evolution-3cce94edcbd2c0969e72bdb53dfeefe4d76551f0.tar
gsoc2013-evolution-3cce94edcbd2c0969e72bdb53dfeefe4d76551f0.tar.gz
gsoc2013-evolution-3cce94edcbd2c0969e72bdb53dfeefe4d76551f0.tar.bz2
gsoc2013-evolution-3cce94edcbd2c0969e72bdb53dfeefe4d76551f0.tar.lz
gsoc2013-evolution-3cce94edcbd2c0969e72bdb53dfeefe4d76551f0.tar.xz
gsoc2013-evolution-3cce94edcbd2c0969e72bdb53dfeefe4d76551f0.tar.zst
gsoc2013-evolution-3cce94edcbd2c0969e72bdb53dfeefe4d76551f0.zip
Bug #634403 - Mails Label popup menu is not updated properly
Diffstat (limited to 'e-util')
-rw-r--r--e-util/e-plugin-ui.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/e-util/e-plugin-ui.c b/e-util/e-plugin-ui.c
index c79220be63..60ad884d25 100644
--- a/e-util/e-plugin-ui.c
+++ b/e-util/e-plugin-ui.c
@@ -344,8 +344,10 @@ plugin_ui_disable_manager (EPluginUIHook *hook,
merge_id = GPOINTER_TO_UINT (data);
/* Merge ID could be 0 if the plugin is disabled. */
- if (merge_id > 0)
+ if (merge_id > 0) {
gtk_ui_manager_remove_ui (ui_manager, merge_id);
+ gtk_ui_manager_ensure_update (ui_manager);
+ }
if (remove)
g_hash_table_remove (hash_table, id);