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
1 changed files with 8 additions and 7 deletions

View File

@ -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,