Skip to content

Commit b1ea76f

Browse files
committed
Remove unused method
1 parent 0834a43 commit b1ea76f

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

internal/widget/renderer.go

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,6 @@ func (t *termGridRenderer) appendTextCell(str rune) {
4141
t.objects = append(t.objects, bg, text, ul)
4242
}
4343

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-
5444
func (t *termGridRenderer) setCellRune(str rune, pos int, style widget.TextGridStyle) {
5545
if str == 0 {
5646
str = ' '

0 commit comments

Comments
 (0)