diff --git a/Riot/Modules/Home/AllChats/AllChatsViewController.swift b/Riot/Modules/Home/AllChats/AllChatsViewController.swift index 7d33aa1fc..762175159 100644 --- a/Riot/Modules/Home/AllChats/AllChatsViewController.swift +++ b/Riot/Modules/Home/AllChats/AllChatsViewController.swift @@ -351,12 +351,20 @@ class AllChatsViewController: HomeViewController { } override func scrollViewWillBeginDragging(_ scrollView: UIScrollView) { + guard scrollView == recentsTableView else { + return + } + initialScrollPosition = scrollPosition(of: scrollView) } override func scrollViewDidScroll(_ scrollView: UIScrollView) { super.scrollViewDidScroll(scrollView) + guard scrollView == recentsTableView else { + return + } + let scrollPosition = scrollPosition(of: scrollView) if !self.recentsTableView.isDragging && scrollPosition == 0 && self.navigationController?.isToolbarHidden == true { diff --git a/changelog.d/6707.bugfix b/changelog.d/6707.bugfix new file mode 100644 index 000000000..8bd333ed3 --- /dev/null +++ b/changelog.d/6707.bugfix @@ -0,0 +1 @@ +New layout: Fixed Low priority rooms titles obscured by bottom bar when side scrolling \ No newline at end of file