mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-08-04 18:15:01 +02:00
add: togglePlayPause route
This commit is contained in:
parent
793f0c05f7
commit
224e5efe48
1 changed files with 21 additions and 2 deletions
|
@ -583,12 +583,31 @@ class AudioPlayer: NSObject {
|
|||
|
||||
commandCenter.playCommand.isEnabled = true
|
||||
commandCenter.playCommand.addTarget { [weak self] event in
|
||||
self?.play(allowSeekBack: true)
|
||||
if (self!.isPlaying()) {
|
||||
self?.pause()
|
||||
} else {
|
||||
self?.play(allowSeekBack: true)
|
||||
}
|
||||
return .success
|
||||
}
|
||||
|
||||
commandCenter.pauseCommand.isEnabled = true
|
||||
commandCenter.pauseCommand.addTarget { [weak self] event in
|
||||
self?.pause()
|
||||
if (self!.isPlaying()) {
|
||||
self?.pause()
|
||||
} else {
|
||||
self?.play(allowSeekBack: true)
|
||||
}
|
||||
return .success
|
||||
}
|
||||
|
||||
commandCenter.togglePlayPauseCommand.isEnabled = true
|
||||
commandCenter.togglePlayPauseCommand.addTarget { [weak self] event in
|
||||
if (self!.isPlaying()) {
|
||||
self?.pause()
|
||||
} else {
|
||||
self?.play(allowSeekBack: true)
|
||||
}
|
||||
return .success
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue