Skip to content

Commit

Permalink
fix #655
Browse files Browse the repository at this point in the history
  • Loading branch information
bao-qian committed May 20, 2016
1 parent eacfb9b commit 59dd439
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Plugins/Wox.Plugin.Folder/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public List<Result> Query(Query query)
item => new Result()
{
Title = item.Nickname,
IcoPath = "Images/folder.png",
IcoPath = item.Path,
SubTitle = "Ctrl + Enter to open the directory",
Action = c =>
{
Expand Down Expand Up @@ -142,7 +142,7 @@ private List<Result> QueryInternal_Directory_Exists(Query query)
results.Add(new Result
{
Title = firstResult,
IcoPath = "Images/folder.png",
IcoPath = search,
Score = 10000,
Action = c =>
{
Expand All @@ -163,7 +163,7 @@ private List<Result> QueryInternal_Directory_Exists(Query query)
var result = new Result
{
Title = dir.Name,
IcoPath = "Images/folder.png",
IcoPath = dir.FullName,
SubTitle = "Ctrl + Enter to open the directory",
Action = c =>
{
Expand Down Expand Up @@ -199,7 +199,7 @@ private List<Result> QueryInternal_Directory_Exists(Query query)
var result = new Result
{
Title = Path.GetFileName(filePath),
IcoPath = "Images/file.png",
IcoPath = filePath,
Action = c =>
{
try
Expand Down

0 comments on commit 59dd439

Please sign in to comment.