1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 21:43:04 +08:00

Use fully qualified name for enum item description in CommentsHeader

This commit is contained in:
Andrei Zavatski 2020-02-24 23:41:34 +03:00
parent a020566b1e
commit d8413c558b

View File

@ -11,8 +11,6 @@ using osu.Framework.Graphics.Sprites;
using osuTK;
using osu.Framework.Input.Events;
using osu.Game.Graphics.Sprites;
using System.ComponentModel;
using Container = osu.Framework.Graphics.Containers.Container;
namespace osu.Game.Overlays.Comments
{
@ -111,7 +109,7 @@ namespace osu.Game.Overlays.Comments
public enum CommentsSortCriteria
{
[Description(@"Recent")]
[System.ComponentModel.Description(@"Recent")]
New,
Old,
Top