Skip to content

Commit 27e7223

Browse files
committed
Fixed "search full path" setting not doing anything
1 parent 5cfaf3c commit 27e7223

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ListFiles.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ protected void Window_SourceInitialized(object sender, System.EventArgs e)
5252

5353
private void FilterProjectItems(object sender, FilterEventArgs e)
5454
{
55-
var searchStr = (e.Item as ProjectItemWrapper).Filename;
55+
var searchStr = (e.Item as ProjectItemWrapper).Path;
5656
if (!bSearchFullPath)
5757
{
5858
searchStr = Path.GetFileName(searchStr);

0 commit comments

Comments
 (0)