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 /gtk/ScintillaGTK.cxx | |
parent | 00b3bdbad8f734a5af99eea32f58a6c4a7bb1bbd (diff) | |
download | scintilla-mirror-b4a0d0879c3313a99566176108c181d1d2a230c2.tar.gz |
Added key code for the right hand side Windows key.
Diffstat (limited to 'gtk/ScintillaGTK.cxx')
-rw-r--r-- | gtk/ScintillaGTK.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index 5dc998a07..269c59e91 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -1947,6 +1947,8 @@ static int KeyTranslate(int keyIn) { return SCK_DIVIDE; case GDK_Super_L: return SCK_WIN; + case GDK_Super_R: + return SCK_RWIN; case GDK_Menu: return SCK_MENU; default: |