diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2024-12-14 21:50:36 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2024-12-14 22:06:14 +0900 |
| commit | cdcab267660473de1621b4a1d8c8f2d4d43f05ae (patch) | |
| tree | bc8d1ad56b0f07ed5040f1c24bb0956cf0d14b60 /src/tui | |
| parent | ec3acb19321b8f74035225baf4a188cbb1163909 (diff) | |
| download | fzf-cdcab267660473de1621b4a1d8c8f2d4d43f05ae.tar.gz | |
Fix redundant clearing of the windows with non-default bg color
Diffstat (limited to 'src/tui')
| -rw-r--r-- | src/tui/tui.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tui/tui.go b/src/tui/tui.go index 04d548f4..c5330849 100644 --- a/src/tui/tui.go +++ b/src/tui/tui.go @@ -412,7 +412,7 @@ type BorderCharacter int func MakeBorderStyle(shape BorderShape, unicode bool) BorderStyle { if shape == BorderNone { return BorderStyle{ - shape: BorderRounded, + shape: shape, top: ' ', bottom: ' ', left: ' ', |
