mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-13 11:09:06 +00:00
Fix config domain mismatch due to CLR optimisation
This commit is contained in:
@@ -278,7 +278,7 @@ namespace QuickLook.Plugin.ImageViewer
|
||||
{
|
||||
Theme = Theme == Themes.Dark ? Themes.Light : Themes.Dark;
|
||||
|
||||
SettingHelper.Set("LastTheme", (int) Theme);
|
||||
SettingHelper.Set("LastTheme", (int) Theme, "QuickLook.Plugin.ImageViewer");
|
||||
}
|
||||
|
||||
private void ShowMeta()
|
||||
|
@@ -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)
|
||||
|
Reference in New Issue
Block a user