mirror of
https://github.com/yattee/yattee.git
synced 2024-11-12 17:18:22 +00:00
Minor controls fixes
This commit is contained in:
parent
0ecc271e70
commit
7cd6928e8c
@ -192,24 +192,25 @@ struct PlayerControls: View {
|
||||
}
|
||||
|
||||
var buttonsBar: some View {
|
||||
HStack(spacing: 20) {
|
||||
HStack {
|
||||
#if !os(tvOS)
|
||||
#if os(iOS)
|
||||
hidePlayerButton
|
||||
#endif
|
||||
|
||||
fullscreenButton
|
||||
|
||||
#if os(iOS)
|
||||
pipButton
|
||||
#endif
|
||||
rateButton
|
||||
|
||||
closeVideoButton
|
||||
|
||||
button("Music Mode", systemImage: "music.note", active: player.musicMode, action: player.toggleMusicMode)
|
||||
.disabled(player.activeBackend == .appleAVPlayer)
|
||||
|
||||
Spacer()
|
||||
|
||||
rateButton
|
||||
|
||||
musicModeButton
|
||||
|
||||
closeVideoButton
|
||||
#endif
|
||||
}
|
||||
}
|
||||
@ -272,6 +273,11 @@ struct PlayerControls: View {
|
||||
}
|
||||
}
|
||||
|
||||
private var musicModeButton: some View {
|
||||
button("Music Mode", systemImage: "music.note", active: player.musicMode, action: player.toggleMusicMode)
|
||||
.disabled(player.activeBackend == .appleAVPlayer)
|
||||
}
|
||||
|
||||
var ratePicker: some View {
|
||||
Picker("Rate", selection: rateBinding) {
|
||||
ForEach(PlayerModel.availableRates, id: \.self) { rate in
|
||||
|
Loading…
Reference in New Issue
Block a user