fix: duplicate scroll indicator issue

This commit is contained in:
CMK 2021-05-18 15:40:30 +08:00
parent 948481909d
commit 9b63371276
1 changed files with 1 additions and 0 deletions

View File

@ -38,6 +38,7 @@ final class AutoCompleteViewController: UIViewController {
tableView.backgroundColor = .clear
tableView.contentInset.top = AutoCompleteViewController.chevronViewHeight
tableView.verticalScrollIndicatorInsets.top = AutoCompleteViewController.chevronViewHeight
tableView.showsVerticalScrollIndicator = false // avoid duplicate to the compose collection view indicator
return tableView
}()