mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
enhance: do NOT show search suggestion if input string is empty (#775)
Some checks failed
Some checks failed
This commit is contained in:
parent
a52977baf3
commit
d1a1b4b2b9
1 changed files with 3 additions and 1 deletions
|
@ -137,7 +137,9 @@ namespace SourceGit.ViewModels
|
||||||
{
|
{
|
||||||
_revisionFiles.Clear();
|
_revisionFiles.Clear();
|
||||||
_revisionFiles.AddRange(files);
|
_revisionFiles.AddRange(files);
|
||||||
UpdateRevisionFileSearchSuggestion();
|
|
||||||
|
if (!string.IsNullOrEmpty(_revisionFileSearchFilter))
|
||||||
|
UpdateRevisionFileSearchSuggestion();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue