summaryrefslogtreecommitdiff
path: root/src/drivers/WinAPI
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2024-09-02 11:59:36 +0200
committerMatthias Melcher <github@matthiasm.com>2024-09-02 11:59:36 +0200
commit28342138158e02e02972d1e961937e0b144f65cc (patch)
treeae14c5ff9c9ea5f323ac0e5e1e7ac54dc5dd3228 /src/drivers/WinAPI
parentaa6ce6b9f1f8462af1fae64a6def10a117053df1 (diff)
Reverting false Ctrl Key fix on Windows
- 1ae43956e2bfb933d63fc774ca8e4ed22e4108dd
Diffstat (limited to 'src/drivers/WinAPI')
-rw-r--r--src/drivers/WinAPI/Fl_WinAPI_Screen_Driver.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/drivers/WinAPI/Fl_WinAPI_Screen_Driver.cxx b/src/drivers/WinAPI/Fl_WinAPI_Screen_Driver.cxx
index 2534d63a5..48b74f0d7 100644
--- a/src/drivers/WinAPI/Fl_WinAPI_Screen_Driver.cxx
+++ b/src/drivers/WinAPI/Fl_WinAPI_Screen_Driver.cxx
@@ -332,7 +332,9 @@ void Fl_WinAPI_Screen_Driver::get_system_colors()
int Fl_WinAPI_Screen_Driver::compose(int &del) {
unsigned char ascii = (unsigned char)Fl::e_text[0];
- int condition = (Fl::e_state & (FL_ALT | FL_META | FL_CTRL)) && !(ascii & 128) ;
+ /* WARNING: The [AltGr] key on international keyboards falsely set FL_CTRL! */
+ /* More investigation needed. */
+ int condition = (Fl::e_state & (FL_ALT | FL_META /* | FL_CTRL */ )) && !(ascii & 128) ;
if (condition) { // this stuff is to be treated as a function key
del = 0;
return 0;