Move websearch images to %APPDATA%

This commit is contained in:
bao-qian
2016-05-07 19:16:13 +01:00
parent ae121895e9
commit 39ba1e0582
9 changed files with 77 additions and 40 deletions

View File

@@ -20,7 +20,7 @@ namespace Wox.Plugin.WebSearch
set
{
_icon = value;
IconPath = Path.Combine(Main.PluginDirectory, Main.ImageDirectory, value);
IconPath = Path.Combine(Main.ImagesDirectory, value);
}
}
@@ -31,7 +31,7 @@ namespace Wox.Plugin.WebSearch
[JsonIgnore]
internal string IconPath { get; private set; } = Path.Combine
(
Main.PluginDirectory, Main.ImageDirectory, DefaultIcon
Main.ImagesDirectory, DefaultIcon
);
public string Url { get; set; }