GUI: Preserve the enabled state of _soundFontClearButton when reflowing the window

This commit is contained in:
Cameron Cawley 2022-06-30 23:44:36 +01:00 committed by Filippos Karapetis
parent 861481b535
commit 2c2922d4b3

@ -3271,10 +3271,12 @@ void GlobalOptionsDialog::reflowLayout() {
if (_midiTabId != -1) {
_tabWidget->setActiveTab(_midiTabId);
bool enabled = _soundFontClearButton->isEnabled();
_tabWidget->removeWidget(_soundFontClearButton);
_soundFontClearButton->setNext(nullptr);
delete _soundFontClearButton;
_soundFontClearButton = addClearButton(_tabWidget, "GlobalOptions_MIDI.mcFontClearButton", kClearSoundFontCmd);
_soundFontClearButton->setEnabled(enabled);
}
if (_pathsTabId != -1) {