mirror of https://github.com/mgba-emu/mgba.git
Qt: Actually load the libraryStyle setting.
No idea how I missed this in the library PR.
This commit is contained in:
parent
70204e410c
commit
03ba16cae9
|
@ -325,6 +325,8 @@ void SettingsView::reloadConfig() {
|
|||
loadSetting("showLibrary", m_ui.showLibrary);
|
||||
loadSetting("preload", m_ui.preload);
|
||||
|
||||
m_ui.libraryStyle->setCurrentIndex(loadSetting("libraryStyle").toInt());
|
||||
|
||||
double fastForwardRatio = loadSetting("fastForwardRatio").toDouble();
|
||||
if (fastForwardRatio <= 0) {
|
||||
m_ui.fastForwardUnbounded->setChecked(true);
|
||||
|
|
Loading…
Reference in New Issue