From 447c8f04e1045f2c1b4ce65e9d4022a3b6705cff Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Wed, 5 Oct 2011 14:16:51 -0700 Subject: [PATCH] Mark the FileChooserButton as UNABLE to select multiple files That's a gtk limitation. So you have to import XML files one at a time. If this is too big of a restriction then we need to redesign the import dialog. Sgned-off-by: Dirk Hohndel --- gtk-gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk-gui.c b/gtk-gui.c index 151f0fa..44c6d41 100644 --- a/gtk-gui.c +++ b/gtk-gui.c @@ -852,7 +852,7 @@ static GtkWidget *xml_file_selector(GtkWidget *vbox) GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT, NULL); - gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(dialog), TRUE); + gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(dialog), FALSE); filter = gtk_file_filter_new(); gtk_file_filter_add_pattern(filter, "*.xml"); -- 2.43.0