From bc49ba289ef365b77359720b82c3fa018a757249 Mon Sep 17 00:00:00 2001 From: jrl Date: Tue, 15 Aug 2006 11:41:02 +0000 Subject: [PATCH] 2006-08-15 James Livingston patch by: Christian Becke * shell/rb-shell.c: (rb_shell_cmd_add_folder_to_library): allow multiple selections in the Import Folder dialog. Fixes #351414. --- ChangeLog | 7 +++++++ shell/rb-shell.c | 1 + 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index bea5bfd0..af1e15b9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-08-15 James Livingston + + patch by: Christian Becke + + * shell/rb-shell.c: (rb_shell_cmd_add_folder_to_library): allow + multiple selections in the Import Folder dialog. Fixes #351414. + 2006-08-15 Jonathan Matthew * shell/rb-shell.c: (construct_widgets): diff --git a/shell/rb-shell.c b/shell/rb-shell.c index eb524e4e..05e17b0d 100644 --- a/shell/rb-shell.c +++ b/shell/rb-shell.c @@ -2369,6 +2369,7 @@ rb_shell_cmd_add_folder_to_library (GtkAction *action, GTK_WINDOW (shell->priv->window), GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER, FALSE); + gtk_file_chooser_set_select_multiple (GTK_FILE_CHOOSER (dialog), TRUE); if (dir) gtk_file_chooser_set_current_folder_uri (GTK_FILE_CHOOSER (dialog), dir); -- 2.11.4.GIT