[Xfce4-commits] [xfce/xfdesktop] 01/01: Fix Open dialog's title (Bug #12560)
noreply at xfce.org
noreply at xfce.org
Mon Aug 15 12:55:31 CEST 2016
This is an automated email from the git hooks/post-receive script.
eric pushed a commit to branch master
in repository xfce/xfdesktop.
commit b88672ffcfa0ab55d805bba5a089fb0056fc26a6
Author: Eric Koegel <eric.koegel at gmail.com>
Date: Mon Aug 15 13:53:23 2016 +0300
Fix Open dialog's title (Bug #12560)
xfdesktop-setting's file chooser's title needs to tell the user
to select a directory, not a file.
---
settings/main.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/settings/main.c b/settings/main.c
index b37abad..2b17617 100644
--- a/settings/main.c
+++ b/settings/main.c
@@ -1859,6 +1859,9 @@ xfdesktop_settings_dialog_setup_tabs(GtkBuilder *main_gxml,
gtk_file_filter_add_pixbuf_formats(filter);
gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(panel->btn_folder), filter);
+ /* Change the title of the file chooser dialog */
+ gtk_file_chooser_button_set_title(GTK_FILE_CHOOSER_BUTTON(panel->btn_folder), _("Select a Directory"));
+
/* Get default wallpaper folder */
path = system_data_lookup ();
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list