mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Fixed Search filter not reapplying after pressing back and re-accessing Gallery (#2367)
* added saved search setting to the startwith field for the searchtextpredicates to reapply filter * typo fix in changelog --------- Co-authored-by: Timothy Baldridge <tbaldridge@gmail.com>
This commit is contained in:
parent
58f9ea7afc
commit
79cd780430
@ -3,6 +3,7 @@
|
|||||||
#### Version TBD
|
#### Version TBD
|
||||||
* Fixed issues related to high RAM usage
|
* Fixed issues related to high RAM usage
|
||||||
* The resumable downloads now reserve drive space to write to in advance instead of being managed in system RAM
|
* The resumable downloads now reserve drive space to write to in advance instead of being managed in system RAM
|
||||||
|
* fixed search filter not applying when pressing back button and reaccessing gallery
|
||||||
* Added more robust checking for protected location paths and subfolders for the launcher exe and install and download paths
|
* Added more robust checking for protected location paths and subfolders for the launcher exe and install and download paths
|
||||||
* Fixed readme double opening when modlist details are prepoulated
|
* Fixed readme double opening when modlist details are prepoulated
|
||||||
* Added a check if Downloadpath is alongside Wabbajack.exe location, to match the install path check that already exists
|
* Added a check if Downloadpath is alongside Wabbajack.exe location, to match the install path check that already exists
|
||||||
|
@ -121,7 +121,7 @@ namespace Wabbajack
|
|||||||
|
|
||||||
var searchTextPredicates = this.ObservableForProperty(vm => vm.Search)
|
var searchTextPredicates = this.ObservableForProperty(vm => vm.Search)
|
||||||
.Select(change => change.Value)
|
.Select(change => change.Value)
|
||||||
.StartWith("")
|
.StartWith(Search)
|
||||||
.Select<string, Func<ModListMetadataVM, bool>>(txt =>
|
.Select<string, Func<ModListMetadataVM, bool>>(txt =>
|
||||||
{
|
{
|
||||||
if (string.IsNullOrWhiteSpace(txt)) return _ => true;
|
if (string.IsNullOrWhiteSpace(txt)) return _ => true;
|
||||||
|
Loading…
Reference in New Issue
Block a user