Expose index file suffixes config [WIP]

This commit is contained in:
qianlifeng
2014-08-13 23:16:45 +08:00
parent eee76222bd
commit 5d1006f05b
9 changed files with 108 additions and 20 deletions

View File

@@ -576,13 +576,7 @@ namespace Wox
{
if (o.AutoAjustScore) o.Score += UserSelectedRecordStorage.Instance.GetSelectedCount(o);
});
lock (locker)
{
waitShowResultList.AddRange(list);
}
List<Result> l = waitShowResultList.Where(o => o.OriginQuery != null && o.OriginQuery.RawQuery == lastQuery).ToList();
waitShowResultList.Clear();
List<Result> l = list.Where(o => o.OriginQuery != null && o.OriginQuery.RawQuery == lastQuery).ToList();
Dispatcher.Invoke(new Action(() => resultCtrl.AddResults(l)));
}
}