Merge branch 'master' into fix-code-coverage

This commit is contained in:
Stanley Goldman 2018-09-26 17:22:17 -04:00 коммит произвёл GitHub
Родитель 7693b475a5 efe148dd37
Коммит 56676640d8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -1,5 +1,8 @@
<ProjectConfiguration>
<Settings>
<AdditionalFilesToIncludeForProject>
<Value>xlf\**.*</Value>
</AdditionalFilesToIncludeForProject>
<PreviouslyBuiltSuccessfully>True</PreviouslyBuiltSuccessfully>
</Settings>
</ProjectConfiguration>

Просмотреть файл

@ -169,8 +169,13 @@ namespace GitHub.VisualStudio.UI
{
SearchHost.IsEnabled = enabled;
if (SearchHost.SearchQuery?.SearchString != query)
var searchString = SearchHost.SearchQuery?.SearchString;
if (searchString?.Trim() != query?.Trim())
{
// SearchAsync will crash the process if we send it a duplicate string.
// There is a SearchTrimsWhitespace setting that makes searched with leading or trailing
// white-space appear as duplicates. We compare the query with trimmed white-space to avoid this.
// https://github.com/github/VisualStudio/issues/1948
SearchHost.SearchAsync(query != null ? new SearchQuery(query) : null);
}
}