Merge pull request #74 from justinpchang/fix-load-list-width

Fix: Load the saved listWidth alongside fontSize and lineHeight on startup
This commit is contained in:
Alexander Pankratov
2022-11-12 17:12:21 +01:00
committed by GitHub

View File

@@ -4433,6 +4433,9 @@
if (conf.lineHeight) if (conf.lineHeight)
setLineHeight(conf.lineHeight); setLineHeight(conf.lineHeight);
if (conf.listWidth)
setListWidth(conf.listWidth);
updateVarsAndLayout(); updateVarsAndLayout();
} }