GUI: Move the FluidSynth reset button from Misc tab to bottom

This should make it clearer that Reset applies to all of the
FluidSynth settings, not just the Misc tab.
This commit is contained in:
Torbjörn Andersson 2013-01-25 05:30:42 +01:00 committed by Johannes Schickel
parent 10724365aa
commit e4a77aff06
12 changed files with 26 additions and 26 deletions

View file

@ -144,10 +144,10 @@ FluidSynthSettingsDialog::FluidSynthSettingsDialog()
_miscInterpolationPopUp->appendEntry(_("Fourth-order"), kInterpolation4thOrder);
_miscInterpolationPopUp->appendEntry(_("Seventh-order"), kInterpolation7thOrder);
new ButtonWidget(_tabWidget, "FluidSynthSettings_Misc.ResetSettings", _("Reset"), _("Reset all FluidSynth settings to their default values."), kResetSettingsCmd);
_tabWidget->setActiveTab(0);
new ButtonWidget(this, "FluidSynthSettings.ResetSettings", _("Reset"), _("Reset all FluidSynth settings to their default values."), kResetSettingsCmd);
new ButtonWidget(this, "FluidSynthSettings.Cancel", _("Cancel"), 0, kCloseCmd);
new ButtonWidget(this, "FluidSynthSettings.Ok", _("OK"), 0, kOKCmd);
}