diff options
author | Mataes <mataes2007@gmail.com> | 2020-05-03 21:16:32 +0300 |
---|---|---|
committer | Mataes <mataes2007@gmail.com> | 2020-05-03 21:16:32 +0300 |
commit | b2d511ebf71157fefdbcbaba9eac1a06d575314b (patch) | |
tree | 9a3d18721292631634a02c7993a585099dc001e8 /plugins/NewStory | |
parent | 18c67383050c401825059299c55ed733391a72c2 (diff) |
newstory: sort not needed
Diffstat (limited to 'plugins/NewStory')
-rw-r--r-- | plugins/NewStory/src/history.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/NewStory/src/history.cpp b/plugins/NewStory/src/history.cpp index 5059a8ec1e..99efbb61cb 100644 --- a/plugins/NewStory/src/history.cpp +++ b/plugins/NewStory/src/history.cpp @@ -368,8 +368,7 @@ class CHistoryDlg : public CDlgBase wchar_t buf[50]; TVINSERTSTRUCT tvi; tvi.hParent = nullptr; - tvi.hInsertAfter = TVI_SORT; - tvi.item.mask = TVIF_TEXT | TVIF_IMAGE | TVIF_SELECTEDIMAGE; + tvi.item.mask = TVIF_TEXT; if (CurYear != PrevYear) { _itow(CurYear, buf, 10); |