1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-17 07:22:55 +08:00

Move shuffle button to left side

This commit is contained in:
Bartłomiej Dach 2024-10-01 10:12:38 +02:00
parent 8eb5e6b1d5
commit a2d9302f4a
No known key found for this signature in database

View File

@ -164,15 +164,16 @@ namespace osu.Game.Overlays
Action = () => musicController.NextTrack(), Action = () => musicController.NextTrack(),
Icon = FontAwesome.Solid.StepForward, Icon = FontAwesome.Solid.StepForward,
}, },
shuffleButton = new MusicIconButton
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Action = shuffle.Toggle,
Icon = FontAwesome.Solid.Random,
}
} }
}, },
shuffleButton = new MusicIconButton
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.Centre,
Position = new Vector2(bottom_black_area_height / 2, 0),
Action = shuffle.Toggle,
Icon = FontAwesome.Solid.Random,
},
playlistButton = new MusicIconButton playlistButton = new MusicIconButton
{ {
Origin = Anchor.Centre, Origin = Anchor.Centre,