mirror of https://github.com/gdamore/tcell.git
Don't set modifiers for AltGr on Windows
AltGr is the same as ctrl+alt, and we don't want those to be set when you press a key using AltGr.
This commit is contained in:
parent
337e381927
commit
96e2990564
|
@ -599,12 +599,17 @@ func geti16(v []byte) int16 {
|
|||
func mod2mask(cks uint32) ModMask {
|
||||
mm := ModNone
|
||||
// Left or right control
|
||||
if (cks & (0x0008 | 0x0004)) != 0 {
|
||||
mm |= ModCtrl
|
||||
}
|
||||
ctrl := (cks & (0x0008 | 0x0004)) != 0
|
||||
// Left or right alt
|
||||
if (cks & (0x0002 | 0x0001)) != 0 {
|
||||
mm |= ModAlt
|
||||
alt := (cks & (0x0002 | 0x0001)) != 0
|
||||
// Filter out ctrl+alt (it means AltGr)
|
||||
if !(ctrl && alt) {
|
||||
if ctrl {
|
||||
mm |= ModCtrl
|
||||
}
|
||||
if alt {
|
||||
mm |= ModAlt
|
||||
}
|
||||
}
|
||||
// Any shift
|
||||
if (cks & 0x0010) != 0 {
|
||||
|
|
Loading…
Reference in New Issue