mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
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:
parent
6fb3427ef9
commit
bbeaad89bd
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue