-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow completely disabling "Update tracker" snackbar on mark as read (m…
…ihonapp/mihon#1374) Also fixes mihonapp/mihon#1369 (cherry picked from commit fc2f339)
- Loading branch information
1 parent
a0806e0
commit b33d9bf
Showing
4 changed files
with
33 additions
and
5 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
app/src/main/java/eu/kanade/domain/track/model/AutoTrackState.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package eu.kanade.domain.track.model | ||
|
||
import dev.icerock.moko.resources.StringResource | ||
import tachiyomi.i18n.MR | ||
|
||
enum class AutoTrackState(val titleRes: StringResource) { | ||
ALWAYS(MR.strings.lock_always), | ||
ASK(MR.strings.default_category_summary), | ||
NEVER(MR.strings.lock_never), | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters