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
This commit is contained in:
Ettore Perazzoli
2000-10-03 03:44:04 +00:00
parent 6ca5ab655e
commit 1c1638efa6
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2000-10-02 Ettore Perazzoli <ettore@helixcode.com>
* e-shortcuts-view.c (show_new_group_dialog): Destroy the dialog
if the user has clicked on "OK" or "Cancel".
2000-10-02 Chris Toshok <toshok@helixcode.com>
* e-storage-set-view.c (e_storage_set_view_get_current_folder): if

View File

@ -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);
}