From c34afae250f4f2690b2079b7b66b31d96d1db2e1 Mon Sep 17 00:00:00 2001 From: qianlifeng Date: Mon, 15 Dec 2014 18:26:15 +0800 Subject: [PATCH] fix #203. Improve the weight of user selected items. --- Wox/MainWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wox/MainWindow.xaml.cs b/Wox/MainWindow.xaml.cs index 3ed2fbbeb0..11339f431c 100644 --- a/Wox/MainWindow.xaml.cs +++ b/Wox/MainWindow.xaml.cs @@ -626,7 +626,7 @@ namespace Wox list.ForEach( o => { - if (o.AutoAjustScore) o.Score += UserSelectedRecordStorage.Instance.GetSelectedCount(o); + if (o.AutoAjustScore) o.Score += UserSelectedRecordStorage.Instance.GetSelectedCount(o) * 5; }); List l = list.Where(o => o.OriginQuery != null && o.OriginQuery.RawQuery == lastQuery).ToList(); Dispatcher.Invoke(new Action(() =>