diff options
Diffstat (limited to 'helix-term/src/ui/picker.rs')
-rw-r--r-- | helix-term/src/ui/picker.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/ui/picker.rs b/helix-term/src/ui/picker.rs index 036b41c8..c6b9a3e6 100644 --- a/helix-term/src/ui/picker.rs +++ b/helix-term/src/ui/picker.rs @@ -106,8 +106,8 @@ impl<T: 'static> Component for FilePicker<T> { let inner = block.inner(preview_area); // 1 column gap on either side let margin = Margin { - vertical: 1, - horizontal: 0, + vertical: 0, + horizontal: 1, }; let inner = inner.inner(&margin); |