Controls layouts, gestures and settings

This commit is contained in:
Arkadiusz Fal
2022-08-28 19:18:49 +02:00
parent 5b785cc9c2
commit 0f7d826a3e
28 changed files with 1318 additions and 537 deletions

View File

@@ -49,7 +49,7 @@ extension PlayerModel {
return
}
backend.seek(to: segment.endTime)
backend.seek(to: segment.endTime, seekType: .segmentSkip(segment.category))
DispatchQueue.main.async { [weak self] in
withAnimation {
@@ -79,7 +79,7 @@ extension PlayerModel {
}
restoredSegments.append(segment)
backend.seek(to: time)
backend.seek(to: time, seekType: .segmentRestore)
resetLastSegment()
}