diff options
author | nyamatongwe <unknown> | 2006-08-22 22:58:01 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2006-08-22 22:58:01 +0000 |
commit | b4a0d0879c3313a99566176108c181d1d2a230c2 (patch) | |
tree | f640f2b7041944e8bb08f0f47270d3da1d837759 /win32/ScintillaWin.cxx | |
parent | 00b3bdbad8f734a5af99eea32f58a6c4a7bb1bbd (diff) | |
download | scintilla-mirror-b4a0d0879c3313a99566176108c181d1d2a230c2.tar.gz |
Added key code for the right hand side Windows key.
Diffstat (limited to 'win32/ScintillaWin.cxx')
-rw-r--r-- | win32/ScintillaWin.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index b1ba0155b..bc7ff17b3 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -397,6 +397,7 @@ static int KeyTranslate(int keyIn) { case VK_SUBTRACT: return SCK_SUBTRACT; case VK_DIVIDE: return SCK_DIVIDE; case VK_LWIN: return SCK_WIN; + case VK_RWIN: return SCK_RWIN; case VK_APPS: return SCK_MENU; case VK_OEM_2: return '/'; case VK_OEM_3: return '`'; |