mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Fixes the entry-related part of #133852.
2004-02-10 Federico Mena Quintero <federico@ximian.com> Fixes the entry-related part of #133852. * gtk/gtkfilechooserdefault.c (update_chooser_entry): Don't change the file part of the entry if the selected item is a folder.
This commit is contained in:
parent
ab09a860ed
commit
87c45c73b1
@ -1,3 +1,10 @@
|
||||
2004-02-10 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fixes the entry-related part of #133852.
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (update_chooser_entry): Don't change
|
||||
the file part of the entry if the selected item is a folder.
|
||||
|
||||
2004-02-10 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fixes #133995, patch by Morten Welinder <mortenw@gnome.org>.
|
||||
|
@ -1,3 +1,10 @@
|
||||
2004-02-10 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fixes the entry-related part of #133852.
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (update_chooser_entry): Don't change
|
||||
the file part of the entry if the selected item is a folder.
|
||||
|
||||
2004-02-10 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fixes #133995, patch by Morten Welinder <mortenw@gnome.org>.
|
||||
|
@ -1,3 +1,10 @@
|
||||
2004-02-10 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fixes the entry-related part of #133852.
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (update_chooser_entry): Don't change
|
||||
the file part of the entry if the selected item is a folder.
|
||||
|
||||
2004-02-10 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fixes #133995, patch by Morten Welinder <mortenw@gnome.org>.
|
||||
|
@ -1,3 +1,10 @@
|
||||
2004-02-10 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fixes the entry-related part of #133852.
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (update_chooser_entry): Don't change
|
||||
the file part of the entry if the selected item is a folder.
|
||||
|
||||
2004-02-10 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fixes #133995, patch by Morten Welinder <mortenw@gnome.org>.
|
||||
|
@ -1,3 +1,10 @@
|
||||
2004-02-10 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fixes the entry-related part of #133852.
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (update_chooser_entry): Don't change
|
||||
the file part of the entry if the selected item is a folder.
|
||||
|
||||
2004-02-10 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fixes #133995, patch by Morten Welinder <mortenw@gnome.org>.
|
||||
|
@ -2106,8 +2106,9 @@ update_chooser_entry (GtkFileChooserDefault *impl)
|
||||
|
||||
info = _gtk_file_system_model_get_info (impl->list_model, &child_iter);
|
||||
|
||||
_gtk_file_chooser_entry_set_file_part (GTK_FILE_CHOOSER_ENTRY (impl->entry),
|
||||
gtk_file_info_get_display_name (info));
|
||||
if (!gtk_file_info_get_is_folder (info))
|
||||
_gtk_file_chooser_entry_set_file_part (GTK_FILE_CHOOSER_ENTRY (impl->entry),
|
||||
gtk_file_info_get_display_name (info));
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user