We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d455fb6 commit f5f02eaCopy full SHA for f5f02ea
1 file changed
pkg/tui/components/messages/messages.go
@@ -46,7 +46,6 @@ type renderedItem struct {
46
id int // Message ID or index as int
47
view string // Cached rendered content
48
height int // Height in lines
49
- start int // Starting line position in complete content
50
end int // Ending line position in complete content
51
}
52
@@ -351,7 +350,6 @@ func (m *model) ensureAllItemsRendered() {
351
350
item := m.renderItem(i, view)
352
353
// Update position information
354
- item.start = currentPosition
355
if item.height > 0 {
356
item.end = currentPosition + item.height - 1
357
} else {
0 commit comments