Skip to content

Commit

Permalink
Don't allow selecting verse 0 after action mode starts. Closes #697
Browse files Browse the repository at this point in the history
  • Loading branch information
timbze committed Jun 7, 2020
1 parent 59b7d39 commit 5290e74
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ class VerseActionModeMediator(
fun verseTouch(verse: ChapterVerse) {
Log.d(TAG, "Verse touched event:$verse")

if (verse.verse == 0) return

val origRange = chapterVerseRange
chapterVerseRange = chapterVerseRange!!.toggleVerse(verse)

Expand Down

0 comments on commit 5290e74

Please sign in to comment.