summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Blandford <jrb@gnome.org>2004-02-24 06:47:51 +0000
committerJonathan Blandford <jrb@src.gnome.org>2004-02-24 06:47:51 +0000
commit6f75d838e8721ee62587c93f8232e660cbbbdd0b (patch)
tree704eb5c40e4b8b88c05474f11208333c96816a06
parentca831202f2cb4f34457d8e1518ae5a72f1c2d953 (diff)
downloadgdk-pixbuf-6f75d838e8721ee62587c93f8232e660cbbbdd0b.tar.gz
Make the dialog look like the nautilus dialog. (expander_activate_cb): get
Tue Feb 24 01:41:30 2004 Jonathan Blandford <jrb@gnome.org> * gtk/gtkfilechooserdefault.c (location_popup_handler): Make the dialog look like the nautilus dialog. (expander_activate_cb): get the order correct.
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLog.pre-2-106
-rw-r--r--ChangeLog.pre-2-46
-rw-r--r--ChangeLog.pre-2-66
-rw-r--r--ChangeLog.pre-2-86
-rw-r--r--gtk/gtkfilechooserdefault.c10
6 files changed, 37 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 8eb92b7fd..864d856c7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue Feb 24 01:41:30 2004 Jonathan Blandford <jrb@gnome.org>
+
+ * gtk/gtkfilechooserdefault.c (location_popup_handler): Make the
+ dialog look like the nautilus dialog.
+ (expander_activate_cb): get the order correct.
+
2004-02-23 Federico Mena Quintero <federico@ximian.com>
* gtk/gtkfilechooserdefault.c (list_selection_changed): Call
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 8eb92b7fd..864d856c7 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,9 @@
+Tue Feb 24 01:41:30 2004 Jonathan Blandford <jrb@gnome.org>
+
+ * gtk/gtkfilechooserdefault.c (location_popup_handler): Make the
+ dialog look like the nautilus dialog.
+ (expander_activate_cb): get the order correct.
+
2004-02-23 Federico Mena Quintero <federico@ximian.com>
* gtk/gtkfilechooserdefault.c (list_selection_changed): Call
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index 8eb92b7fd..864d856c7 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -1,3 +1,9 @@
+Tue Feb 24 01:41:30 2004 Jonathan Blandford <jrb@gnome.org>
+
+ * gtk/gtkfilechooserdefault.c (location_popup_handler): Make the
+ dialog look like the nautilus dialog.
+ (expander_activate_cb): get the order correct.
+
2004-02-23 Federico Mena Quintero <federico@ximian.com>
* gtk/gtkfilechooserdefault.c (list_selection_changed): Call
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 8eb92b7fd..864d856c7 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,3 +1,9 @@
+Tue Feb 24 01:41:30 2004 Jonathan Blandford <jrb@gnome.org>
+
+ * gtk/gtkfilechooserdefault.c (location_popup_handler): Make the
+ dialog look like the nautilus dialog.
+ (expander_activate_cb): get the order correct.
+
2004-02-23 Federico Mena Quintero <federico@ximian.com>
* gtk/gtkfilechooserdefault.c (list_selection_changed): Call
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 8eb92b7fd..864d856c7 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,3 +1,9 @@
+Tue Feb 24 01:41:30 2004 Jonathan Blandford <jrb@gnome.org>
+
+ * gtk/gtkfilechooserdefault.c (location_popup_handler): Make the
+ dialog look like the nautilus dialog.
+ (expander_activate_cb): get the order correct.
+
2004-02-23 Federico Mena Quintero <federico@ximian.com>
* gtk/gtkfilechooserdefault.c (list_selection_changed): Call
diff --git a/gtk/gtkfilechooserdefault.c b/gtk/gtkfilechooserdefault.c
index c3949d1ac..7f1cd17fb 100644
--- a/gtk/gtkfilechooserdefault.c
+++ b/gtk/gtkfilechooserdefault.c
@@ -1770,9 +1770,9 @@ expander_activate_cb (GtkExpander *expander,
active = gtk_expander_get_expanded (expander);
if (active)
- gtk_widget_show (impl->hpaned);
- else
gtk_widget_hide (impl->hpaned);
+ else
+ gtk_widget_show (impl->hpaned);
}
/* Creates the widgets specific to Save mode */
@@ -3552,13 +3552,17 @@ location_popup_handler (GtkFileChooserDefault *impl)
dialog = gtk_dialog_new_with_buttons (_("Open Location"),
GTK_WINDOW (toplevel),
GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_NO_SEPARATOR,
- GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
+ GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
NULL);
+ gtk_window_set_default_size (GTK_WINDOW (dialog), 300, -1);
+ gtk_container_set_border_width (GTK_CONTAINER (dialog), 5);
+ gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog)->vbox), 2);
gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_ACCEPT);
hbox = gtk_hbox_new (FALSE, 12);
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), hbox, FALSE, FALSE, 0);
+ gtk_container_set_border_width (GTK_CONTAINER (hbox), 5);
label = gtk_label_new_with_mnemonic (_("_Location:"));
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);