mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 19:57:07 +02:00
[Powertoys Run] Implemented "hidden files" flag in native Windows Search (#5500)
* Implemented "hidden files" flag in native Windows Search * add missing file * Change InitQueryHelper back to static * Fix Line Endings * Add files via github Co-authored-by: Roy <royvou@hotmailcom>
This commit is contained in:
@@ -39,7 +39,7 @@ namespace Microsoft.Plugin.Indexer.SearchHelper
|
||||
{
|
||||
while (!wDSResults.IsClosed && wDSResults.Read())
|
||||
{
|
||||
List<object> fieldData = new List<object>();
|
||||
List<object> fieldData = new List<object>(wDSResults.FieldCount);
|
||||
for (int i = 0; i < wDSResults.FieldCount; i++)
|
||||
{
|
||||
fieldData.Add(wDSResults.GetValue(i));
|
||||
|
||||
Reference in New Issue
Block a user