Skip to content

Commit

Permalink
add VKEY_DIVIDE
Browse files Browse the repository at this point in the history
  • Loading branch information
codebytere committed Nov 13, 2018
1 parent 6181794 commit bf74629
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions atom/common/keyboard_util.cc
Expand Up @@ -68,6 +68,8 @@ ui::KeyboardCode KeyboardCodeFromKeyIdentifier(const std::string& s,
return ui::VKEY_DECIMAL;
} else if (str == "numsub") {
return ui::VKEY_SUBTRACT;
} else if (str == "numdiv") {
return ui::VKEY_DIVIDE;
} else if (str == "space") {
return ui::VKEY_SPACE;
} else if (str == "backspace") {
Expand Down

0 comments on commit bf74629

Please sign in to comment.