diff options
author | Blaž Hrastnik | 2021-08-13 08:59:47 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-08-13 08:59:47 +0000 |
commit | eb9ac0a743ff94e02ee4294ca342d67d1d5907c7 (patch) | |
tree | fb2e0c5dca10c2ae3675efb84cd01ab314ea743f /helix-term/src | |
parent | f20dc1283d2368aa9d052d46588a09599f901294 (diff) |
ui: picker: Use ui.selection instead of ui.selection.primary
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/ui/picker.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/picker.rs b/helix-term/src/ui/picker.rs index c3567d27..31aac794 100644 --- a/helix-term/src/ui/picker.rs +++ b/helix-term/src/ui/picker.rs @@ -141,7 +141,7 @@ impl<T: 'static> Component for FilePicker<T> { for x in inner.left()..inner.right() { surface .get_mut(x, inner.y + line.saturating_sub(first_line) as u16) - .set_style(cx.editor.theme.get("ui.selection.primary")); + .set_style(cx.editor.theme.get("ui.selection")); } } } |