mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 751749 part.4 Give higher priority to Meta than Super and Hyper due to better compatibility with Web applications r=karlt
This commit is contained in:
parent
d628388400
commit
fc66962585
@ -463,15 +463,15 @@ KeymapWrapper::InitBySystemSettings()
|
||||
case INDEX_ALT:
|
||||
modifier = ALT;
|
||||
break;
|
||||
case INDEX_META:
|
||||
modifier = META;
|
||||
break;
|
||||
case INDEX_SUPER:
|
||||
modifier = SUPER;
|
||||
break;
|
||||
case INDEX_HYPER:
|
||||
modifier = HYPER;
|
||||
break;
|
||||
case INDEX_META:
|
||||
modifier = META;
|
||||
break;
|
||||
case INDEX_ALTGR:
|
||||
modifier = ALTGR;
|
||||
break;
|
||||
|
@ -53,9 +53,9 @@ public:
|
||||
SHIFT = 0x0008,
|
||||
CTRL = 0x0010,
|
||||
ALT = 0x0020,
|
||||
SUPER = 0x0040,
|
||||
HYPER = 0x0080,
|
||||
META = 0x0100,
|
||||
META = 0x0040,
|
||||
SUPER = 0x0080,
|
||||
HYPER = 0x0100,
|
||||
ALTGR = 0x0200
|
||||
};
|
||||
|
||||
@ -170,9 +170,9 @@ protected:
|
||||
INDEX_NUM_LOCK,
|
||||
INDEX_SCROLL_LOCK,
|
||||
INDEX_ALT,
|
||||
INDEX_META,
|
||||
INDEX_SUPER,
|
||||
INDEX_HYPER,
|
||||
INDEX_META,
|
||||
INDEX_ALTGR,
|
||||
COUNT_OF_MODIFIER_INDEX
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user