Fix parseKeys related to price alert open action

pull/290/head
Vuong 3 years ago
parent fdc9664842
commit 6402c67a34
No known key found for this signature in database
GPG Key ID: 6180BBA961D18ED4

@ -51,28 +51,30 @@ func (ct *Cointop) ParseKeys(s string) (interface{}, tcell.ModMask) {
mod := tcell.ModNone mod := tcell.ModNone
// translate legacy and special names for keys // translate legacy and special names for keys
keyName := strings.TrimSpace(strings.Replace(s, "+", "-", -1)) keyName := keyMap(s)
split := strings.Split(keyName, "-") if len(s) > 1 {
if len(split) > 1 { keyName := strings.TrimSpace(strings.Replace(s, "+", "-", -1))
m := strings.ToLower(strings.TrimSpace(split[0])) split := strings.Split(keyName, "-")
k := strings.TrimSpace(split[1])
k = keyMap(k) if len(split) > 1 {
if k == " " { m := strings.ToLower(strings.TrimSpace(split[0]))
k = "Space" // fix mod+space k := strings.TrimSpace(split[1])
} k = keyMap(k)
if k == " " {
k = "Space" // fix mod+space
}
if m == "alt" { if m == "alt" {
mod = tcell.ModAlt mod = tcell.ModAlt
keyName = k keyName = k
} else if m == "ctrl" { } else if m == "ctrl" {
// let the lookup handle it // let the lookup handle it
keyName = m + "-" + k keyName = m + "-" + k
} else { } else {
keyName = m + "-" + k keyName = m + "-" + k
}
// TODO: other mods?
} }
// TODO: other mods?
} else {
keyName = keyMap(keyName)
} }
// First try looking up keyname directly // First try looking up keyname directly

Loading…
Cancel
Save