summaryrefslogtreecommitdiffstats
path: root/src/terminal.go
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2023-09-01 20:28:56 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2023-09-01 20:30:44 +0900
commitf50a7058d6734b8213fb8bbe6a293b2ffd485eed (patch)
tree81cdc89687fff5d3a067498df309a753b4179b60 /src/terminal.go
parent2c74f0a0405bc4d394063bb66f8c6dfd5fe750fa (diff)
Fix center-alignment of border/preview label
Fix #3421
Diffstat (limited to 'src/terminal.go')
-rw-r--r--src/terminal.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/terminal.go b/src/terminal.go
index c7e86209..6418a5df 100644
--- a/src/terminal.go
+++ b/src/terminal.go
@@ -781,7 +781,7 @@ func (t *Terminal) ansiLabelPrinter(str string, color *tui.ColorPair, fill bool)
window.CPrint(*color, str)
}
}
- return printFn, len(text)
+ return printFn, length
}
// Printer that correctly handles ANSI color codes and tab characters