ScrollView: Do not change offset in directionless focus change

This commit is contained in:
Alexandre Bury 2020-08-17 10:50:33 -07:00
parent 9e804fd105
commit b75b5017e1

View File

@ -370,10 +370,13 @@ where
fn take_focus(&mut self, source: Direction) -> bool {
// If the inner view takes focus, re-align the important area.
if self.inner.take_focus(source) {
// Don't do anything if we come from `None`
if source != Direction::none() {
self.scroll_to_important_area();
// Note: we can't really return an `EventResult` here :(
self.on_scroll_callback();
}
true
} else {
self.core.is_scrolling().any()