1
0
mirror of https://github.com/yattee/yattee.git synced 2025-01-09 19:10:32 +05:30

Fix browser controls play button disabled state

This commit is contained in:
Arkadiusz Fal 2022-05-22 12:32:38 +02:00
parent f4f94b6f40
commit d0aa6303cf

View File

@ -99,7 +99,7 @@ struct BrowserPlayerControls<Content: View, Toolbar: View>: View {
}
}
}
.disabled(playerControls.isLoadingVideo)
.disabled(playerControls.isLoadingVideo || model.currentItem.isNil)
.font(.system(size: 30))
.frame(minWidth: 30)