()
| 266 | } |
| 267 | |
| 268 | func (el *extList) ScrollUp() { |
| 269 | i := el.ui.List.GetCurrentItem() - 1 |
| 270 | if i < 0 { |
| 271 | i = 0 |
| 272 | } |
| 273 | el.ui.List.SetCurrentItem(i) |
| 274 | } |
| 275 | |
| 276 | func (el *extList) FindSelected() (extEntry, int) { |
| 277 | if el.ui.List.GetItemCount() == 0 { |
no outgoing calls