Removing action on folder result, and displaying folder path on selecting a folder result from the folder plugin.

This commit is contained in:
ryanbodrug-microsoft
2020-04-25 09:49:06 -07:00
parent 9d3720557e
commit 8f7305e347
3 changed files with 8 additions and 23 deletions

View File

@@ -255,7 +255,8 @@ namespace Wox.ViewModel
public override string ToString()
{
return Result.Title.ToString();
var display = String.IsNullOrEmpty(Result.QueryTextDisplay) ? Result.Title : Result.QueryTextDisplay;
return display;
}
}
}