Skip to content

Commit

Permalink
Fix missing annotation tool from more menu
Browse files Browse the repository at this point in the history
  • Loading branch information
mvasilak committed Sep 10, 2024
1 parent d179556 commit d906bd8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ class AnnotationToolbarViewController: UIViewController {
}

if count < toolButtons.count {
for idx in count..<toolButtons.count {
for idx in (count - 1)..<toolButtons.count {
toolButtons[idx] = toolButtons[idx].copy(isHidden: true)
}
} else {
Expand Down

0 comments on commit d906bd8

Please sign in to comment.