diff options
author | Federico Mena Quintero <federico@novell.com> | 2006-03-29 21:51:40 +0000 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2006-03-29 21:51:40 +0000 |
commit | eedae6fe91179c9e3bc2ef5b4ba1e70763ea8d81 (patch) | |
tree | 9741320c51eff145489cb18ffee9a14e5b19ce72 | |
parent | a78c0acc210ee6e980463ecd3240d12c80498e66 (diff) | |
download | gtk+-eedae6fe91179c9e3bc2ef5b4ba1e70763ea8d81.tar.gz |
Reduce the inter-button spacing to 0.
2006-03-29 Federico Mena Quintero <federico@novell.com>
* gtk/gtkpathbar.c (gtk_path_bar_init): Reduce the inter-button
spacing to 0.
* gtk/gtkfilechooserdefault.c (browse_widgets_create): Make the
location label bold.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 8 | ||||
-rw-r--r-- | gtk/gtkfilechooserdefault.c | 2 | ||||
-rw-r--r-- | gtk/gtkpathbar.c | 2 |
4 files changed, 18 insertions, 2 deletions
@@ -1,5 +1,13 @@ 2006-03-29 Federico Mena Quintero <federico@novell.com> + * gtk/gtkpathbar.c (gtk_path_bar_init): Reduce the inter-button + spacing to 0. + + * gtk/gtkfilechooserdefault.c (browse_widgets_create): Make the + location label bold. + +2006-03-29 Federico Mena Quintero <federico@novell.com> + * gtk/gtkfilechooserdefault.c (location_mode_set): Just change the location_mode field if we are in SAVE/CREATE_FOLDER modes. (gtk_file_chooser_default_get_paths): Get the path based on the diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 9d5421ef61..0888c4800f 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,13 @@ 2006-03-29 Federico Mena Quintero <federico@novell.com> + * gtk/gtkpathbar.c (gtk_path_bar_init): Reduce the inter-button + spacing to 0. + + * gtk/gtkfilechooserdefault.c (browse_widgets_create): Make the + location label bold. + +2006-03-29 Federico Mena Quintero <federico@novell.com> + * gtk/gtkfilechooserdefault.c (location_mode_set): Just change the location_mode field if we are in SAVE/CREATE_FOLDER modes. (gtk_file_chooser_default_get_paths): Get the path based on the diff --git a/gtk/gtkfilechooserdefault.c b/gtk/gtkfilechooserdefault.c index 63cbbeb065..5f21cd0976 100644 --- a/gtk/gtkfilechooserdefault.c +++ b/gtk/gtkfilechooserdefault.c @@ -4283,7 +4283,7 @@ browse_widgets_create (GtkFileChooserDefault *impl) impl->location_entry_box = gtk_hbox_new (FALSE, 12); gtk_box_pack_start (GTK_BOX (vbox), impl->location_entry_box, FALSE, FALSE, 0); - impl->location_label = gtk_label_new_with_mnemonic ("_Location:"); + impl->location_label = gtk_label_new_with_mnemonic ("<b>_Location:</b>"); gtk_label_set_use_markup (GTK_LABEL (impl->location_label), TRUE); gtk_widget_show (impl->location_label); gtk_box_pack_start (GTK_BOX (impl->location_entry_box), impl->location_label, FALSE, FALSE, 0); diff --git a/gtk/gtkpathbar.c b/gtk/gtkpathbar.c index ec62d32d35..0c721a5ca3 100644 --- a/gtk/gtkpathbar.c +++ b/gtk/gtkpathbar.c @@ -140,7 +140,7 @@ gtk_path_bar_init (GtkPathBar *path_bar) GTK_WIDGET_SET_FLAGS (path_bar, GTK_NO_WINDOW); gtk_widget_set_redraw_on_allocate (GTK_WIDGET (path_bar), FALSE); - path_bar->spacing = 3; + path_bar->spacing = 0; path_bar->up_slider_button = get_slider_button (path_bar, GTK_ARROW_LEFT); path_bar->down_slider_button = get_slider_button (path_bar, GTK_ARROW_RIGHT); path_bar->icon_size = FALLBACK_ICON_SIZE; |