aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui/picker.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-02-09 06:40:30 +0000
committerBlaž Hrastnik2021-02-09 06:40:47 +0000
commitd4b85ce18d8a9bb535eaeae9e2c7421ef81c81e9 (patch)
treef68c8fc1d4996f861af2c7966ac8c49dba4aa174 /helix-term/src/ui/picker.rs
parent755632f23113ccff66390de1e2c3476a51886b00 (diff)
popup: wip work on completion popups
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)
}
}