mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 23:53:51 +09:00
CI fixes
This commit is contained in:
@ -3,7 +3,6 @@
|
||||
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Game.Configuration;
|
||||
using osu.Game.Graphics.Sprites;
|
||||
using osu.Game.Overlays.Music;
|
||||
using System.Collections.Generic;
|
||||
|
@ -1,33 +1,33 @@
|
||||
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
||||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Game.Configuration;
|
||||
using osu.Game.Graphics.UserInterface;
|
||||
using osu.Game.Overlays.Settings;
|
||||
|
||||
namespace osu.Game.Screens.Play.Options
|
||||
{
|
||||
public class DiscussionOptions : OptionContainer
|
||||
{
|
||||
public override string Title => @"DISCUSSIONS";
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
private void load(OsuConfigManager config)
|
||||
{
|
||||
Add(new SettingsCheckbox
|
||||
{
|
||||
LabelText = "Show floating coments",
|
||||
Bindable = config.GetBindable<bool>(OsuSetting.FloatingComments)
|
||||
});
|
||||
Add(new FocusedTextBox
|
||||
{
|
||||
RelativeSizeAxes = Axes.X,
|
||||
Height = 30,
|
||||
PlaceholderText = "Add Comment",
|
||||
HoldFocus = false,
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Game.Configuration;
|
||||
using osu.Game.Graphics.UserInterface;
|
||||
using osu.Game.Overlays.Settings;
|
||||
|
||||
namespace osu.Game.Screens.Play.Options
|
||||
{
|
||||
public class DiscussionOptions : OptionContainer
|
||||
{
|
||||
public override string Title => @"DISCUSSIONS";
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
private void load(OsuConfigManager config)
|
||||
{
|
||||
Add(new SettingsCheckbox
|
||||
{
|
||||
LabelText = "Show floating coments",
|
||||
Bindable = config.GetBindable<bool>(OsuSetting.FloatingComments)
|
||||
});
|
||||
Add(new FocusedTextBox
|
||||
{
|
||||
RelativeSizeAxes = Axes.X,
|
||||
Height = 30,
|
||||
PlaceholderText = "Add Comment",
|
||||
HoldFocus = false,
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -19,10 +19,9 @@ namespace osu.Game.Screens.Play.Options
|
||||
/// </summary>
|
||||
public abstract string Title { get; }
|
||||
|
||||
private Container header;
|
||||
private FillFlowContainer content;
|
||||
private readonly FillFlowContainer content;
|
||||
|
||||
public OptionContainer()
|
||||
protected OptionContainer()
|
||||
{
|
||||
AutoSizeAxes = Axes.Y;
|
||||
Width = 250;
|
||||
@ -47,7 +46,7 @@ namespace osu.Game.Screens.Play.Options
|
||||
|
||||
Children = new Drawable[]
|
||||
{
|
||||
header = new Container
|
||||
new Container
|
||||
{
|
||||
RelativeSizeAxes = Axes.X,
|
||||
Height = 30,
|
||||
|
Reference in New Issue
Block a user