mirror of
https://github.com/yattee/yattee.git
synced 2024-12-12 21:30:32 +05:30
03fbb4933a
When a user taps on a chapter, the pop now also shows the name of the chapter. The chapters are now marked in AppRedColor instead of orange. This is based on PR #639 That one needs to be merged first before this one can go in.
15 lines
260 B
Swift
15 lines
260 B
Swift
import Foundation
|
|
|
|
enum SeekType: Equatable {
|
|
case chapterSkip(String)
|
|
case segmentSkip(String)
|
|
case segmentRestore
|
|
case userInteracted
|
|
case loopRestart
|
|
case backendSync
|
|
|
|
var presentable: Bool {
|
|
self != .backendSync
|
|
}
|
|
}
|