diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 2 |
2 files changed, 9 insertions, 1 deletions
@@ -1,6 +1,12 @@ 2006-01-21 Crispin Flowerday <gnome@flowerday.cx> - * src/bookmarks/ephy-bookmarks-editor.c (cmd_bookmarks_export): + * src/bookmarks/ephy-bookmarks-editor.c (cmd_bookmarks_export) + + Add back the gtk_widget_destroy() to really fix bug #327438 + +2006-01-21 Crispin Flowerday <gnome@flowerday.cx> + + * src/bookmarks/ephy-bookmarks-editor.c (cmd_bookmarks_export) Fix bookmark exporting, so that it can be cancelled. Fixes bug #327438 diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index 9d0a3bb22..e3f501b04 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -734,6 +734,8 @@ cmd_bookmarks_export (GtkAction *action, g_free (basename); } while (!ephy_gui_check_location_writable (GTK_WIDGET (dialog), filename)); + + gtk_widget_destroy (dialog); /* 0 for ephy RDF format, 1 for mozilla HTML format */ |