diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2008-07-15 05:57:39 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2008-07-15 05:57:39 +0000 |
commit | ba3b08bc7b4f0edc4846de35c86f2b00c4255f84 (patch) | |
tree | a75079437f09b3751bc2b893e86c6cddf7511e0c /gtk/gtkfilechooserdefault.c | |
parent | b0ac0f978e05a1b13368dfef8f8f1724c776851f (diff) | |
download | gtk+-ba3b08bc7b4f0edc4846de35c86f2b00c4255f84.tar.gz |
Fix a problem with context menu sensitivity
svn path=/trunk/; revision=20834
Diffstat (limited to 'gtk/gtkfilechooserdefault.c')
-rw-r--r-- | gtk/gtkfilechooserdefault.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gtk/gtkfilechooserdefault.c b/gtk/gtkfilechooserdefault.c index c101492ed4..8a6f0975c5 100644 --- a/gtk/gtkfilechooserdefault.c +++ b/gtk/gtkfilechooserdefault.c @@ -3708,14 +3708,13 @@ shortcuts_build_popup_menu (GtkFileChooserDefault *impl) G_CALLBACK (rename_shortcut_cb), impl); gtk_widget_show (item); gtk_menu_shell_append (GTK_MENU_SHELL (impl->browse_shortcuts_popup_menu), item); - - shortcuts_check_popup_sensitivity (impl); } static void shortcuts_update_popup_menu (GtkFileChooserDefault *impl) { shortcuts_build_popup_menu (impl); + shortcuts_check_popup_sensitivity (impl); } static void |