consistent final scrolling position

pull/6/head
dvkt 5 years ago
parent 8208440857
commit 43827e5849

@ -472,6 +472,9 @@ impl Menu {
} else {
self.scroll = 0;
}
if self.scroll > self.final_scroll() {
self.scroll = self.final_scroll();
}
return Action::Redraw;
}
}

Loading…
Cancel
Save