mirror of https://github.com/ppy/osu
Move shuffle button to left side
This commit is contained in:
parent
8eb5e6b1d5
commit
a2d9302f4a
|
@ -164,15 +164,16 @@ private void load()
|
|||
Action = () => musicController.NextTrack(),
|
||||
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
|
||||
{
|
||||
Origin = Anchor.Centre,
|
||||
|
|
Loading…
Reference in New Issue