diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-10-03 11:44:04 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-10-03 11:44:04 +0800 |
commit | 1c1638efa621c06cfc0ba0d592a4dfe555fc7eb1 (patch) | |
tree | cc03f94eca996d44db9b3b2c3f3be194d4893281 /shell/e-shortcuts-view.c | |
parent | 6ca5ab655eb56cab1cbffee98c3edb4da55e11be (diff) | |
download | gsoc2013-evolution-1c1638efa621c06cfc0ba0d592a4dfe555fc7eb1.tar.gz gsoc2013-evolution-1c1638efa621c06cfc0ba0d592a4dfe555fc7eb1.tar.zst gsoc2013-evolution-1c1638efa621c06cfc0ba0d592a4dfe555fc7eb1.zip |
Fixed a bug that caused the "Create new shortcut group" dialog not to
disappear when clicking on OK or Cancel.
svn path=/trunk/; revision=5689
Diffstat (limited to 'shell/e-shortcuts-view.c')
-rw-r--r-- | shell/e-shortcuts-view.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/e-shortcuts-view.c b/shell/e-shortcuts-view.c index 105d96b496..a4b60eee56 100644 --- a/shell/e-shortcuts-view.c +++ b/shell/e-shortcuts-view.c @@ -154,6 +154,8 @@ show_new_group_dialog (EShortcutsView *view) group_name = gtk_entry_get_text (GTK_ENTRY (entry)); e_shortcuts_add_group (view->priv->shortcuts, -1, group_name); + + gtk_widget_destroy (dialog); } |