mirror of
https://github.com/Maks1mS/bubbles.git
synced 2025-03-14 13:03:44 +03:00
Correct typo, add potential TODO
This commit is contained in:
parent
9b3e5476c3
commit
3c07b97d37
@ -156,7 +156,7 @@ func (m *Model) HalfViewUp() (lines []string) {
|
|||||||
return lines
|
return lines
|
||||||
}
|
}
|
||||||
|
|
||||||
// LineDown moves the view up by the given number of lines.
|
// LineDown moves the view down by the given number of lines.
|
||||||
func (m *Model) LineDown(n int) (lines []string) {
|
func (m *Model) LineDown(n int) (lines []string) {
|
||||||
if m.AtBottom() || n == 0 {
|
if m.AtBottom() || n == 0 {
|
||||||
return nil
|
return nil
|
||||||
@ -206,6 +206,8 @@ func Sync(m Model) tea.Cmd {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: we should probably use m.visibleLines() rather than these two
|
||||||
|
// expressions.
|
||||||
top := max(m.YOffset, 0)
|
top := max(m.YOffset, 0)
|
||||||
bottom := min(m.YOffset+m.Height, len(m.lines)-1)
|
bottom := min(m.YOffset+m.Height, len(m.lines)-1)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user