Fix jumping around in search

This commit is contained in:
Drew DeVault 2019-06-26 20:52:34 -04:00
parent 91a75cd98b
commit bf02ad30ca
1 changed files with 5 additions and 10 deletions

View File

@ -184,14 +184,7 @@ func (ml *MessageList) Selected() *types.MessageInfo {
func (ml *MessageList) Select(index int) {
store := ml.Store()
store.Select(index)
// I'm too lazy to do the math right now
for store.SelectedIndex()-ml.scroll >= ml.Height() {
ml.scroll += 1
}
for store.SelectedIndex()-ml.scroll < 0 {
ml.scroll -= 1
}
ml.Scroll()
}
func (ml *MessageList) Scroll() {
@ -201,9 +194,11 @@ func (ml *MessageList) Scroll() {
return
}
if ml.Height() != 0 {
if store.SelectedIndex()-ml.scroll >= ml.Height() {
// I'm too lazy to do the math right now
for store.SelectedIndex()-ml.scroll >= ml.Height() {
ml.scroll += 1
} else if store.SelectedIndex()-ml.scroll < 0 {
}
for store.SelectedIndex()-ml.scroll < 0 {
ml.scroll -= 1
}
}