Skip to content

Commit

Permalink
Stop moving a panel while the tracking table view is editing (#431)
Browse files Browse the repository at this point in the history
To fix #427
  • Loading branch information
scenee authored Jan 11, 2021
1 parent 9ea95d6 commit a932f3b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Sources/Core.swift
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,9 @@ class Core: NSObject, UIGestureRecognizerDelegate {
if scrollView.isDecelerating {
return true
}
if let tableView = (scrollView as? UITableView), tableView.isEditing {
return true
}

return false
}
Expand Down

0 comments on commit a932f3b

Please sign in to comment.