mirror of
https://github.com/yattee/yattee.git
synced 2024-12-22 21:43:41 +00:00
set playingFullscreen to proper value
Signed-off-by: Toni Förster <toni.foerster@gmail.com>
This commit is contained in:
parent
64a18678ce
commit
8e97d3f42f
@ -7,6 +7,7 @@ final class PlayerSettingsGroupExporter: SettingsGroupExporter {
|
|||||||
"playerInstanceID": Defaults[.playerInstanceID] ?? "",
|
"playerInstanceID": Defaults[.playerInstanceID] ?? "",
|
||||||
"pauseOnHidingPlayer": Defaults[.pauseOnHidingPlayer],
|
"pauseOnHidingPlayer": Defaults[.pauseOnHidingPlayer],
|
||||||
"closeVideoOnEOF": Defaults[.closeVideoOnEOF],
|
"closeVideoOnEOF": Defaults[.closeVideoOnEOF],
|
||||||
|
"exitFullscreenOnEOF": Defaults[.exitFullscreenOnEOF],
|
||||||
"expandVideoDescription": Defaults[.expandVideoDescription],
|
"expandVideoDescription": Defaults[.expandVideoDescription],
|
||||||
"collapsedLinesDescription": Defaults[.collapsedLinesDescription],
|
"collapsedLinesDescription": Defaults[.collapsedLinesDescription],
|
||||||
"showChapters": Defaults[.showChapters],
|
"showChapters": Defaults[.showChapters],
|
||||||
|
@ -17,6 +17,10 @@ struct PlayerSettingsGroupImporter {
|
|||||||
Defaults[.closeVideoOnEOF] = closeVideoOnEOF
|
Defaults[.closeVideoOnEOF] = closeVideoOnEOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if let exitFullscreenOnEOF = json["exitFullscreenOnEOF"].bool {
|
||||||
|
Defaults[.exitFullscreenOnEOF] = exitFullscreenOnEOF
|
||||||
|
}
|
||||||
|
|
||||||
if let expandVideoDescription = json["expandVideoDescription"].bool {
|
if let expandVideoDescription = json["expandVideoDescription"].bool {
|
||||||
Defaults[.expandVideoDescription] = expandVideoDescription
|
Defaults[.expandVideoDescription] = expandVideoDescription
|
||||||
}
|
}
|
||||||
|
@ -123,9 +123,7 @@ extension PlayerBackend {
|
|||||||
if Defaults[.closeVideoOnEOF] {
|
if Defaults[.closeVideoOnEOF] {
|
||||||
model.resetQueue()
|
model.resetQueue()
|
||||||
model.hide()
|
model.hide()
|
||||||
}
|
} else if Defaults[.exitFullscreenOnEOF], model.playingFullScreen {
|
||||||
|
|
||||||
if !Defaults[.closeVideoOnEOF], Defaults[.exitFullscreenOnEOF], model.playingFullScreen {
|
|
||||||
model.exitFullScreen()
|
model.exitFullScreen()
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -1001,6 +1001,7 @@ final class PlayerModel: ObservableObject {
|
|||||||
|
|
||||||
logger.info("entering fullscreen")
|
logger.info("entering fullscreen")
|
||||||
toggleFullscreen(false, showControls: showControls)
|
toggleFullscreen(false, showControls: showControls)
|
||||||
|
self.playingFullScreen = true
|
||||||
}
|
}
|
||||||
|
|
||||||
func exitFullScreen(showControls: Bool = true) {
|
func exitFullScreen(showControls: Bool = true) {
|
||||||
@ -1008,6 +1009,7 @@ final class PlayerModel: ObservableObject {
|
|||||||
|
|
||||||
logger.info("exiting fullscreen")
|
logger.info("exiting fullscreen")
|
||||||
toggleFullscreen(true, showControls: showControls)
|
toggleFullscreen(true, showControls: showControls)
|
||||||
|
self.playingFullScreen = false
|
||||||
}
|
}
|
||||||
|
|
||||||
func updateNowPlayingInfo() {
|
func updateNowPlayingInfo() {
|
||||||
|
@ -75,6 +75,7 @@ extension Defaults.Keys {
|
|||||||
static let expandVideoDescription = Key<Bool>("expandVideoDescription", default: expandVideoDescriptionDefault)
|
static let expandVideoDescription = Key<Bool>("expandVideoDescription", default: expandVideoDescriptionDefault)
|
||||||
|
|
||||||
static let collapsedLinesDescription = Key<Int>("collapsedLinesDescription", default: 5)
|
static let collapsedLinesDescription = Key<Int>("collapsedLinesDescription", default: 5)
|
||||||
|
static let exitFullscreenOnEOF = Key<Bool>("exitFullscreenOnEOF", default: true)
|
||||||
|
|
||||||
static let showChapters = Key<Bool>("showChapters", default: true)
|
static let showChapters = Key<Bool>("showChapters", default: true)
|
||||||
static let showChapterThumbnails = Key<Bool>("showChapterThumbnails", default: true)
|
static let showChapterThumbnails = Key<Bool>("showChapterThumbnails", default: true)
|
||||||
|
Loading…
Reference in New Issue
Block a user