We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0834a43 commit b1ea76fCopy full SHA for b1ea76f
internal/widget/renderer.go
@@ -41,16 +41,6 @@ func (t *termGridRenderer) appendTextCell(str rune) {
41
t.objects = append(t.objects, bg, text, ul)
42
}
43
44
-func (t *termGridRenderer) refreshCell(row, col int) {
45
- pos := row*t.cols + col
46
- if pos*3+1 >= len(t.objects) {
47
- return
48
- }
49
-
50
- cell := t.text.Rows[row].Cells[col]
51
- t.setCellRune(cell.Rune, pos, cell.Style)
52
-}
53
54
func (t *termGridRenderer) setCellRune(str rune, pos int, style widget.TextGridStyle) {
55
if str == 0 {
56
str = ' '
0 commit comments