aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-06-26 20:52:34 -0400
committerDrew DeVault <sir@cmpwn.com>2019-06-26 20:52:34 -0400
commitbf02ad30ca118df09203ce34bba36a5fb9d5d450 (patch)
treef5e963fc5d454504dbd4417ca3ffb5adb1821b3e
parent91a75cd98b705bd5e6689b154ecaca0e7c81630e (diff)
Fix jumping around in search
-rw-r--r--widgets/msglist.go15
1 files changed, 5 insertions, 10 deletions
diff --git a/widgets/msglist.go b/widgets/msglist.go
index 3f7e2b3..211cbce 100644
--- a/widgets/msglist.go
+++ b/widgets/msglist.go
@@ -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
}
}