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
commit a2192dc529
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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