mirror of
https://github.com/osukey/osukey.git
synced 2025-06-25 13:18:03 +09:00
Fix remaining framework changes
This commit is contained in:
parent
176b4ecc38
commit
2f5668f4e7
@ -33,5 +33,7 @@ namespace osu.Game.Graphics.UserInterface
|
|||||||
{
|
{
|
||||||
set => this.FadeTo(value ? 1 : 0);
|
set => this.FadeTo(value ? 1 : 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool FilteringActive { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -43,6 +43,8 @@ namespace osu.Game.Overlays.Chat.Selection
|
|||||||
set => this.FadeTo(value ? 1f : 0f, 100);
|
set => this.FadeTo(value ? 1f : 0f, 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool FilteringActive { get; set; }
|
||||||
|
|
||||||
public Action<Channel> OnRequestJoin;
|
public Action<Channel> OnRequestJoin;
|
||||||
public Action<Channel> OnRequestLeave;
|
public Action<Channel> OnRequestLeave;
|
||||||
|
|
||||||
|
@ -27,6 +27,8 @@ namespace osu.Game.Overlays.Chat.Selection
|
|||||||
set => this.FadeTo(value ? 1f : 0f, 100);
|
set => this.FadeTo(value ? 1f : 0f, 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool FilteringActive { get; set; }
|
||||||
|
|
||||||
public string Header
|
public string Header
|
||||||
{
|
{
|
||||||
get => header.Text;
|
get => header.Text;
|
||||||
|
@ -43,6 +43,8 @@ namespace osu.Game.Overlays.KeyBinding
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool FilteringActive { get; set; }
|
||||||
|
|
||||||
private OsuSpriteText text;
|
private OsuSpriteText text;
|
||||||
private OsuTextFlowContainer pressAKey;
|
private OsuTextFlowContainer pressAKey;
|
||||||
|
|
||||||
|
@ -155,6 +155,8 @@ namespace osu.Game.Overlays.Music
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool FilteringActive { get; set; }
|
||||||
|
|
||||||
private class PlaylistItemHandle : SpriteIcon
|
private class PlaylistItemHandle : SpriteIcon
|
||||||
{
|
{
|
||||||
public PlaylistItemHandle()
|
public PlaylistItemHandle()
|
||||||
|
@ -231,6 +231,11 @@ namespace osu.Game.Overlays.Music
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool FilteringActive
|
||||||
|
{
|
||||||
|
set { }
|
||||||
|
}
|
||||||
|
|
||||||
public IEnumerable<IFilterable> FilterableChildren => Children;
|
public IEnumerable<IFilterable> FilterableChildren => Children;
|
||||||
|
|
||||||
public ItemSearchContainer()
|
public ItemSearchContainer()
|
||||||
|
@ -79,6 +79,8 @@ namespace osu.Game.Overlays.Settings
|
|||||||
set => this.FadeTo(value ? 1 : 0);
|
set => this.FadeTo(value ? 1 : 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool FilteringActive { get; set; }
|
||||||
|
|
||||||
protected SettingsItem()
|
protected SettingsItem()
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.X;
|
RelativeSizeAxes = Axes.X;
|
||||||
|
@ -35,6 +35,8 @@ namespace osu.Game.Overlays.Settings
|
|||||||
set => this.FadeTo(value ? 1 : 0);
|
set => this.FadeTo(value ? 1 : 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool FilteringActive { get; set; }
|
||||||
|
|
||||||
protected SettingsSection()
|
protected SettingsSection()
|
||||||
{
|
{
|
||||||
Margin = new MarginPadding { Top = 20 };
|
Margin = new MarginPadding { Top = 20 };
|
||||||
|
@ -28,6 +28,8 @@ namespace osu.Game.Overlays.Settings
|
|||||||
set => this.FadeTo(value ? 1 : 0);
|
set => this.FadeTo(value ? 1 : 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool FilteringActive { get; set; }
|
||||||
|
|
||||||
protected SettingsSubsection()
|
protected SettingsSubsection()
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.X;
|
RelativeSizeAxes = Axes.X;
|
||||||
|
@ -77,6 +77,8 @@ namespace osu.Game.Screens.Multi.Lounge.Components
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool FilteringActive { get; set; }
|
||||||
|
|
||||||
public DrawableRoom(Room room)
|
public DrawableRoom(Room room)
|
||||||
{
|
{
|
||||||
Room = room;
|
Room = room;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user