Be more consistent with max() argument order

This commit is contained in:
Christian Rocha 2020-07-17 18:13:48 -04:00
parent 5720cfb35a
commit 2f909886c1
No known key found for this signature in database
GPG Key ID: D6CC7A16E5878018

View File

@ -168,8 +168,8 @@ func (m *Model) LineDown(n int) (lines []string) {
) )
if len(m.lines) > 0 { if len(m.lines) > 0 {
top := max(0, m.YOffset+m.Height-n) top := max(m.YOffset+m.Height-n, 0)
bottom := min(len(m.lines)-1, m.YOffset+m.Height) bottom := min(m.YOffset+m.Height, len(m.lines)-1)
lines = m.lines[top:bottom] lines = m.lines[top:bottom]
} }