Enable sf3 extension (#3895)

Add sf3 file extension, move `sf2` to `soundfonts`.
This commit is contained in:
Tres Finocchiaro
2017-11-14 21:59:58 -05:00
committed by GitHub
parent 28a4eb27f2
commit 77b4985a2d
4 changed files with 6 additions and 6 deletions

View File

@@ -60,7 +60,7 @@ Plugin::Descriptor PLUGIN_EXPORT sf2player_plugin_descriptor =
0x0100,
Plugin::Instrument,
new PluginPixmapLoader( "logo" ),
"sf2",
"sf2,sf3",
NULL
} ;
@@ -1078,7 +1078,7 @@ void sf2InstrumentView::showFileDialog()
ofd.setFileMode( FileDialog::ExistingFiles );
QStringList types;
types << tr( "SoundFont2 Files (*.sf2)" );
types << tr( "SoundFont Files (*.sf2 *.sf3)" );
ofd.setNameFilters( types );
if( k->m_filename != "" )