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:
Masayuki Nakano 2012-07-19 10:28:17 +09:00
parent d628388400
commit fc66962585
2 changed files with 7 additions and 7 deletions

View File

@ -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;

View File

@ -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
};