1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Merge branch 'master' into zendeskhelp

This commit is contained in:
Chris Cummer 2019-05-10 23:14:16 -07:00 committed by GitHub
commit 521687e0a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 0 deletions

View File

@ -7,6 +7,7 @@ builds:
goos:
- darwin
- linux
- windows
goarch:
- 386
- amd64

View File

@ -5,6 +5,7 @@
### ⚡️ Added
* DataDog module is now scrollable and interactive, by [@Seanstoppable](https://github.com/Seanstoppable)
* Focusable hot key numbers are now assigned in a stable order, [#435](https://github.com/wtfutil/wtf/issues/435) by [@Seanstoppable](https://github.com/Seanstoppable)
## v0.9.2

View File

@ -1,6 +1,8 @@
package wtf
import (
"sort"
"github.com/olebedev/config"
"github.com/rivo/tview"
)
@ -177,6 +179,17 @@ func (tracker *FocusTracker) focusables() []Wtfable {
}
}
// Sort for deterministic ordering
sort.SliceStable(focusable[:], func(i, j int) bool {
if focusable[i].Top() < focusable[j].Top() {
return true
}
if focusable[i].Top() == focusable[j].Top() {
return focusable[i].Left() < focusable[j].Left()
}
return false
})
return focusable
}