summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2025-07-22 19:19:15 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2025-07-22 19:23:10 +0900
commit069d71a8401530028e2ea407904462ef8c435d88 (patch)
tree8e404225965eeec8ac69c65479f10c2f59aee254
parent08027e7a79d49c7b1186a6e76415611d5b65b4e4 (diff)
downloadfzf-069d71a8401530028e2ea407904462ef8c435d88.tar.gz
Fix rendering error when hiding a preview window without border
This was a regression introduced in cdcab267. Fix #4465
-rw-r--r--src/tui/tui.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tui/tui.go b/src/tui/tui.go
index 02b9b093..a91e93e2 100644
--- a/src/tui/tui.go
+++ b/src/tui/tui.go
@@ -504,7 +504,7 @@ type BorderCharacter int
func MakeBorderStyle(shape BorderShape, unicode bool) BorderStyle {
if shape == BorderNone || shape == BorderPhantom {
return BorderStyle{
- shape: shape,
+ shape: BorderRounded,
top: ' ',
bottom: ' ',
left: ' ',