// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Graphics.Containers; namespace osu.Game.Overlays.Mods { public partial class ModSearchContainer : SearchContainer { /// /// Same as except the filtering is guarantied to be performed /// /// /// This is required because can be hidden when search term applied /// therefore cannot be reached and filter cannot automatically re-validate itself. /// public string ForcedSearchTerm { get => SearchTerm; set { if (value == SearchTerm) return; SearchTerm = value; Update(); } } } }