From beecbda1887c5838c497bcb9fc166d527c3e2660 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Sun, 7 Feb 2010 21:29:05 -0500 Subject: [PATCH] lbxgui: Recognise *.LBX as an LBX archive. The files on the Moo2 CD show up in ALL CAPITALS, so it's useful to match them with the file filter. --- src/gui/lbxgui.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/lbxgui.c b/src/gui/lbxgui.c index 0592a7e..33dfdd8 100644 --- a/src/gui/lbxgui.c +++ b/src/gui/lbxgui.c @@ -316,6 +316,7 @@ void open_archive(GtkWidget *widget) lbxfilter = gtk_file_filter_new(); gtk_file_filter_set_name(lbxfilter, "LBX Archives (*.lbx)"); gtk_file_filter_add_pattern(lbxfilter, "*.lbx"); + gtk_file_filter_add_pattern(lbxfilter, "*.LBX"); allfilter = gtk_file_filter_new(); gtk_file_filter_set_name(allfilter, "All Files"); -- 2.43.2