mirror of
https://github.com/ppy/osu.git
synced 2025-02-22 01:23:24 +08:00
Make ChannelSection headers uppercase in the setter
This commit is contained in:
parent
b632e7f1ad
commit
754fe956f9
@ -30,7 +30,7 @@ namespace osu.Game.Overlays.Chat
|
|||||||
public string Header
|
public string Header
|
||||||
{
|
{
|
||||||
get { return header.Text; }
|
get { return header.Text; }
|
||||||
set { header.Text = value; }
|
set { header.Text = value.ToUpper(); }
|
||||||
}
|
}
|
||||||
|
|
||||||
public IEnumerable<Channel> Channels
|
public IEnumerable<Channel> Channels
|
||||||
|
@ -250,7 +250,7 @@ namespace osu.Game.Overlays
|
|||||||
{
|
{
|
||||||
new ChannelSection
|
new ChannelSection
|
||||||
{
|
{
|
||||||
Header = @"ALL CHANNELS",
|
Header = "All Channels",
|
||||||
Channels = channels,
|
Channels = channels,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user