Fix config domain mismatch due to CLR optimisation

This commit is contained in:
Paddy Xu
2021-03-07 19:48:40 +01:00
parent a91261435a
commit b683ce0fd1
4 changed files with 7 additions and 7 deletions

View File

@@ -73,7 +73,7 @@ namespace QuickLook.Plugin.ImageViewer
else
context.PreferredSize = new Size(800, 600);
context.Theme = (Themes) SettingHelper.Get("LastTheme", 1);
context.Theme = (Themes) SettingHelper.Get("LastTheme", 1, "QuickLook.Plugin.ImageViewer");
}
public void View(string path, ContextObject context)