Fix bug with keyboard input

This commit is contained in:
Sasha Koshka 2022-11-23 20:34:05 -05:00
parent ae514f5ae2
commit 5a76bd0c22
1 changed files with 4 additions and 4 deletions

View File

@ -120,7 +120,8 @@ func (backend *Backend) keycodeToButton (
symbol2Rune = unicode.ToUpper(symbol1Rune)
cased = true
} else {
symbol2 = symbol1
symbol2 = symbol1
symbol2Rune = symbol1Rune
}
}
if symbol4 == 0 {
@ -131,14 +132,13 @@ func (backend *Backend) keycodeToButton (
symbol4Rune = unicode.ToUpper(symbol3Rune)
cased = true
} else {
symbol4 = symbol3
symbol4 = symbol3
symbol4Rune = symbol3Rune
}
}
var selectedKeysym xproto.Keysym
var selectedRune rune
// fmt.Printf("AAA\t%X\t%X\t%X\t%X\n", symbol1, symbol2, symbol3, symbol4)
// big ol list in the middle
switch {