Skip to content

Commit

Permalink
revert ActionTimelineSelector change
Browse files Browse the repository at this point in the history
  • Loading branch information
Minmoose committed Nov 20, 2024
1 parent 34c9437 commit 89230c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Brio/UI/Controls/Selectors/ActionTimelineSelector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ protected override bool Filter(ActionTimelineSelectorEntry item, string search)
if(item.TimelineType == ActionTimelineSelectorEntry.OriginalType.Raw && !_showRaw)
return false;

if(item.Slot != ActionTimelineSlots.Base && _showBlendable)
if(item.Slot != ActionTimelineSlots.Base && !_showBlendable)
return false;

var searchText = $"{item.Name} {item.TimelineId} {item.TimelineType} {item.Slot} {item.Purpose} {item.Key}";
Expand Down

0 comments on commit 89230c3

Please sign in to comment.