aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui/picker.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src/ui/picker.rs')
-rw-r--r--helix-term/src/ui/picker.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/ui/picker.rs b/helix-term/src/ui/picker.rs
index 60828b6f..d8da052a 100644
--- a/helix-term/src/ui/picker.rs
+++ b/helix-term/src/ui/picker.rs
@@ -257,7 +257,7 @@ impl<T> Component for Picker<T> {
}
}
- fn cursor_position(&self, area: Rect, ctx: &mut Context) -> Option<Position> {
- self.prompt.cursor_position(area, ctx)
+ fn cursor_position(&self, area: Rect, editor: &Editor) -> Option<Position> {
+ self.prompt.cursor_position(area, editor)
}
}