Qt: Actually load the libraryStyle setting.

No idea how I missed this in the library PR.
This commit is contained in:
waddlesplash 2017-07-08 13:38:51 -04:00 committed by Vicki Pfau
parent f920afdfe2
commit 6fcd3bd9af
1 changed files with 2 additions and 0 deletions

View File

@ -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);