mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:33:30 +08:00
Change settings overlay to always show expanded buttons
This commit is contained in:
parent
58476d5429
commit
9a1a97180d
@ -13,9 +13,12 @@ namespace osu.Game.Overlays.Settings
|
||||
public const float DEFAULT_WIDTH = 70;
|
||||
public const int EXPANDED_WIDTH = 200;
|
||||
|
||||
protected override bool ExpandOnHover => false;
|
||||
|
||||
public SettingsSidebar()
|
||||
: base(DEFAULT_WIDTH, EXPANDED_WIDTH)
|
||||
{
|
||||
Expanded.Value = true;
|
||||
}
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
|
@ -72,16 +72,19 @@ namespace osu.Game.Overlays
|
||||
switch (state.NewValue)
|
||||
{
|
||||
case Visibility.Visible:
|
||||
Sidebar?.FadeColour(Color4.DarkGray, 300, Easing.OutQuint);
|
||||
Sidebar.Expanded.Value = false;
|
||||
Sidebar.FadeColour(Color4.DarkGray, 300, Easing.OutQuint);
|
||||
|
||||
SectionsContainer.FadeOut(300, Easing.OutQuint);
|
||||
ContentContainer.MoveToX(-PANEL_WIDTH, 500, Easing.OutQuint);
|
||||
|
||||
lastOpenedSubPanel = panel;
|
||||
|
||||
break;
|
||||
|
||||
case Visibility.Hidden:
|
||||
Sidebar?.FadeColour(Color4.White, 300, Easing.OutQuint);
|
||||
Sidebar.Expanded.Value = true;
|
||||
Sidebar.FadeColour(Color4.White, 300, Easing.OutQuint);
|
||||
|
||||
SectionsContainer.FadeIn(500, Easing.OutQuint);
|
||||
ContentContainer.MoveToX(0, 500, Easing.OutQuint);
|
||||
|
@ -285,7 +285,6 @@ namespace osu.Game.Overlays
|
||||
return;
|
||||
|
||||
SectionsContainer.ScrollTo(section);
|
||||
Sidebar.Expanded.Value = false;
|
||||
},
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user