mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-26 00:43:00 +08:00
Fixed RPF explorer search results back/forward bug
This commit is contained in:
parent
f84b51d1c1
commit
f24691a586
@ -1068,7 +1068,10 @@ namespace CodeWalker
|
|||||||
MainListView.VirtualListSize = 0;
|
MainListView.VirtualListSize = 0;
|
||||||
if (CurrentFolder != null)
|
if (CurrentFolder != null)
|
||||||
{
|
{
|
||||||
CurrentFolder.ListItems = null; //makes sure to rebuild the current files list
|
if (!CurrentFolder.IsSearchResults)
|
||||||
|
{
|
||||||
|
CurrentFolder.ListItems = null; //makes sure to rebuild the current files list
|
||||||
|
}
|
||||||
CurrentFiles = CurrentFolder.GetListItems();
|
CurrentFiles = CurrentFolder.GetListItems();
|
||||||
|
|
||||||
foreach (var file in CurrentFiles) //cache all the data for use by the list view.
|
foreach (var file in CurrentFiles) //cache all the data for use by the list view.
|
||||||
|
Loading…
Reference in New Issue
Block a user