Fix some tablet settings being hidden when searching using "area" keyword

As discussed in https://github.com/ppy/osu/discussions/23504.
This commit is contained in:
Dean Herbert 2023-05-12 14:57:54 +09:00
parent 3e8711ed96
commit c0f869e685

View File

@ -3,6 +3,8 @@
#nullable disable
using System.Collections.Generic;
using System.Linq;
using osu.Framework;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
@ -23,6 +25,8 @@ namespace osu.Game.Overlays.Settings.Sections.Input
{
public partial class TabletSettings : SettingsSubsection
{
public override IEnumerable<LocalisableString> FilterTerms => base.FilterTerms.Concat(new LocalisableString[] { "area" });
public TabletAreaSelection AreaSelection { get; private set; }
private readonly ITabletHandler tabletHandler;