1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 02:37:19 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
1.2 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 18:19:50 +09:00
2017-09-14 15:44:36 +02:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Localisation;
2017-09-14 15:44:36 +02:00
using osu.Game.Configuration;
2021-08-11 16:48:37 +08:00
using osu.Game.Localisation;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Overlays.Settings.Sections.Graphics
2016-11-10 17:40:42 -05:00
{
public class ScreenshotSettings : SettingsSubsection
2016-11-10 17:40:42 -05:00
{
protected override LocalisableString Header => GraphicsSettingsStrings.Screenshots;
2018-04-13 18:19:50 +09:00
2017-09-14 15:44:36 +02:00
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
Children = new Drawable[]
2017-09-14 15:44:36 +02:00
{
2018-03-16 20:42:05 +03:00
new SettingsEnumDropdown<ScreenshotFormat>
{
2021-08-11 16:48:37 +08:00
LabelText = GraphicsSettingsStrings.ScreenshotFormat,
Current = config.GetBindable<ScreenshotFormat>(OsuSetting.ScreenshotFormat)
},
new SettingsCheckbox
{
2021-08-11 16:48:37 +08:00
LabelText = GraphicsSettingsStrings.ShowCursorInScreenshots,
Current = config.GetBindable<bool>(OsuSetting.ScreenshotCaptureMenuCursor)
}
2017-09-14 15:44:36 +02:00
};
}
2016-11-10 17:40:42 -05:00
}
}