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
This commit is contained in:
Vincent Penquerc'h 2011-01-13 14:19:05 +00:00 committed by Tim-Philipp Müller
parent 6fb3427ef9
commit bbeaad89bd

View file

@ -709,7 +709,7 @@ class PlayerWindow(gtk.Window):
chooser.add_filter(f) chooser.add_filter(f)
f = gtk.FileFilter() f = gtk.FileFilter()
f.set_name("Ogg files") 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... # support...
chooser.add_filter(f) chooser.add_filter(f)
chooser.set_filter(f) chooser.set_filter(f)