From bbeaad89bdd9b810f80ddcd29a8290493546a9d3 Mon Sep 17 00:00:00 2001 From: Vincent Penquerc'h Date: Thu, 13 Jan 2011 14:19:05 +0000 Subject: [PATCH] remuxer.py: list files named *.og[gvax], not only *.ogg These are all recommended extensions for Ogg streams. https://bugzilla.gnome.org/show_bug.cgi?id=639423 --- examples/remuxer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/remuxer.py b/examples/remuxer.py index fa32134..096344a 100644 --- a/examples/remuxer.py +++ b/examples/remuxer.py @@ -709,7 +709,7 @@ class PlayerWindow(gtk.Window): chooser.add_filter(f) f = gtk.FileFilter() f.set_name("Ogg files") - f.add_pattern("*.ogg") # as long as this is the only thing we + f.add_pattern("*.og[gvax]") # as long as this is the only thing we # support... chooser.add_filter(f) chooser.set_filter(f) -- 2.7.4