summaryrefslogtreecommitdiff
path: root/muse2/synti/fluidsynth/fluidsynthgui.cpp
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2011-05-13 12:56:25 +0000
committerFlorian Jung <flo@windfisch.org>2011-05-13 12:56:25 +0000
commit8aed0b79c9b28af69ef67e858992385ea074df63 (patch)
treea31cbe67dcac93b4f67836ebfabcc27561ed5f9a /muse2/synti/fluidsynth/fluidsynthgui.cpp
parent1c431bd67567104ba9e026ae75ba479f56d387a2 (diff)
parent2b2776be8c1f6c90b5887ef5453321e06c6aea26 (diff)
merged with trunk
midi files default to type=GM now changed wildcards for opening file. midi is now selectable
Diffstat (limited to 'muse2/synti/fluidsynth/fluidsynthgui.cpp')
-rw-r--r--muse2/synti/fluidsynth/fluidsynthgui.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/muse2/synti/fluidsynth/fluidsynthgui.cpp b/muse2/synti/fluidsynth/fluidsynthgui.cpp
index 8c7bbf12..2e91515f 100644
--- a/muse2/synti/fluidsynth/fluidsynthgui.cpp
+++ b/muse2/synti/fluidsynth/fluidsynthgui.cpp
@@ -164,7 +164,8 @@ void FluidSynthGui::loadClicked()
QString filename = QFileDialog::getOpenFileName(this,
tr("Choose soundfont"),
lastdir,
- QString("*.[Ss][Ff]2"));
+ //QString("Soundfonts (*.[Ss][Ff]2);;All files (*)"));
+ QString("Soundfonts (*.sf2);;All files (*)"));
if (filename != QString::null) {
int lastslash = filename.lastIndexOf('/');