1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +08:00

Correctly hook up window mode dropdown.

This commit is contained in:
Dean Herbert 2017-02-23 17:35:14 +09:00
parent 9bba4b66ba
commit f1538791c3
No known key found for this signature in database
GPG Key ID: 46D71BF4958ABB49

View File

@ -18,10 +18,10 @@ namespace osu.Game.Overlays.Options.Sections.Graphics
Children = new Drawable[] Children = new Drawable[]
{ {
new OptionLabel { Text = "Resolution: TODO dropdown" }, new OptionLabel { Text = "Resolution: TODO dropdown" },
new OsuCheckbox new OptionEnumDropDown<WindowMode>
{ {
LabelText = "Fullscreen mode", LabelText = "Screen mode",
Bindable = config.GetBindable<bool>(FrameworkConfig.Fullscreen), Bindable = config.GetBindable<WindowMode>(FrameworkConfig.WindowMode),
}, },
new OsuCheckbox new OsuCheckbox
{ {