Fix for 73010.
authorHarry Lu <harry.lu@sun.com>
Wed, 2 Mar 2005 02:24:51 +0000 (02:24 +0000)
committerHarry Lu <haip@src.gnome.org>
Wed, 2 Mar 2005 02:24:51 +0000 (02:24 +0000)
2005-03-01  Harry Lu <harry.lu@sun.com>

        Fix for 73010.

        * e-categories-dialog.c: (load_properties_dialog): set modal for
        the gnome_file_entry.

libedataserverui/ChangeLog
libedataserverui/e-categories-dialog.c

index 2a0163c..6096644 100644 (file)
@@ -1,3 +1,10 @@
+2005-03-01  Harry Lu <harry.lu@sun.com>
+
+       Fix for 73010.
+
+       * e-categories-dialog.c: (load_properties_dialog): set modal for
+       the gnome_file_entry.
+
 2005-02-25  Rodrigo Moya  <rodrigo@novell.com>
 
        * e-categories-dialog.c (new_button_clicked_cb) :
index a1ab28c..63cf2b7 100644 (file)
@@ -91,6 +91,7 @@ load_properties_dialog (ECategoriesDialog *parent)
        prop_dialog->category_icon = gnome_file_entry_new ("category-icon-history-id", _("Category Icon"));
        gtk_table_attach (GTK_TABLE (table), prop_dialog->category_icon, 1, 2, 2, 3, GTK_FILL, GTK_FILL, 3, 3);
        gtk_widget_show (prop_dialog->category_icon);
+       gnome_file_entry_set_modal ((GnomeFileEntry *)prop_dialog->category_icon, TRUE);
 
        return prop_dialog;
 }