1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-12 17:07:18 +08:00
osu-lazer/osu.Game/Screens/Play/PlayerSettings/DiscussionSettings.cs

36 lines
1.1 KiB
C#
Raw Normal View History

2018-01-05 20:21:19 +09:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-05-17 16:54:49 +03:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-05-17 17:14:09 +03:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Configuration;
using osu.Game.Graphics.UserInterface;
namespace osu.Game.Screens.Play.PlayerSettings
2017-05-17 17:14:09 +03:00
{
2018-01-15 20:52:52 +03:00
public class DiscussionSettings : PlayerSettingsGroup
2017-05-17 17:14:09 +03:00
{
2017-05-28 00:56:11 +03:00
protected override string Title => @"discussions";
2017-05-17 17:14:09 +03:00
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
2017-05-29 19:00:29 +03:00
Children = new Drawable[]
2017-05-17 17:14:09 +03:00
{
new PlayerCheckbox
2017-05-29 19:00:29 +03:00
{
2017-05-30 12:23:53 +03:00
LabelText = "Show floating comments",
2017-05-29 19:00:29 +03:00
Bindable = config.GetBindable<bool>(OsuSetting.FloatingComments)
},
new FocusedTextBox
{
RelativeSizeAxes = Axes.X,
Height = 30,
PlaceholderText = "Add Comment",
HoldFocus = false,
},
};
2017-05-17 17:14:09 +03:00
}
}
}