Merge pull request #125 from atom/dont-map-meta
Don't map command to ctrl
This commit is contained in:
commit
ec880d64bf
1 changed files with 0 additions and 6 deletions
|
@ -108,13 +108,7 @@ bool StringToAccelerator(const std::string& description,
|
||||||
} else if (tokens[i] == "ctrl") {
|
} else if (tokens[i] == "ctrl") {
|
||||||
modifiers |= ui::EF_CONTROL_DOWN;
|
modifiers |= ui::EF_CONTROL_DOWN;
|
||||||
} else if (tokens[i] == "command") {
|
} else if (tokens[i] == "command") {
|
||||||
// The "Command" would be translated to "Ctrl" on platforms other than
|
|
||||||
// OS X.
|
|
||||||
#if defined(OS_MACOSX)
|
|
||||||
modifiers |= ui::EF_COMMAND_DOWN;
|
modifiers |= ui::EF_COMMAND_DOWN;
|
||||||
#else
|
|
||||||
modifiers |= ui::EF_CONTROL_DOWN;
|
|
||||||
#endif
|
|
||||||
} else if (tokens[i] == "alt") {
|
} else if (tokens[i] == "alt") {
|
||||||
modifiers |= ui::EF_ALT_DOWN;
|
modifiers |= ui::EF_ALT_DOWN;
|
||||||
} else if (tokens[i] == "shift") {
|
} else if (tokens[i] == "shift") {
|
||||||
|
|
Loading…
Reference in a new issue