()
| 254 | } |
| 255 | |
| 256 | func (el *extList) PageUp() { |
| 257 | i := el.ui.List.GetCurrentItem() - pagingOffset |
| 258 | if i < 0 { |
| 259 | i = 0 |
| 260 | } |
| 261 | el.ui.List.SetCurrentItem(i) |
| 262 | } |
| 263 | |
| 264 | func (el *extList) ScrollDown() { |
| 265 | el.ui.List.SetCurrentItem(el.ui.List.GetCurrentItem() + 1) |
no outgoing calls