Fix completion down arrow in filter pane

This commit is contained in:
Dheepak Krishnamurthy 2021-04-30 13:50:24 -06:00
parent 49aae22a38
commit 8898ab8824

View file

@ -2634,7 +2634,7 @@ impl TaskwarriorTuiApp {
}
Key::Down => {
if self.show_completion_pane && !self.completion_list.is_empty() {
self.completion_list.previous();
self.completion_list.next();
} else if let Some(s) = self
.filter_history_context
.history_search(&self.filter.as_str()[..self.filter.pos()], HistoryDirection::Forward)