From: Nick Bowler Date: Mon, 8 Feb 2010 02:29:05 +0000 (-0500) Subject: lbxgui: Recognise *.LBX as an LBX archive. X-Git-Url: http://git.draconx.ca/gitweb/liblbx.git/commitdiff_plain/beecbda1887c5838c497bcb9fc166d527c3e2660 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. --- 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");