diff options
| author | Manolo Gouy <Manolo> | 2011-04-01 09:00:07 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2011-04-01 09:00:07 +0000 |
| commit | 8cd8a67b04e41d72e51a80d6cb914f6c85ef554d (patch) | |
| tree | 83bb992c97a8b11085942e733c2cefea3029e7f2 /src/Fl_compose.cxx | |
| parent | f4c12d46d6aa24e8f23c3dd2bfbebbf951625b63 (diff) | |
Fix STR #2598 with OP patch.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8552 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_compose.cxx')
| -rw-r--r-- | src/Fl_compose.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Fl_compose.cxx b/src/Fl_compose.cxx index 1ea06bfde..9185188ee 100644 --- a/src/Fl_compose.cxx +++ b/src/Fl_compose.cxx @@ -66,7 +66,7 @@ int Fl::compose(int& del) { } #else unsigned char ascii = (unsigned)e_text[0]; - if ((e_state & (FL_ALT | FL_META)) && !(ascii & 128)) return 0; + if ((e_state & (FL_ALT | FL_META | FL_CTRL)) && !(ascii & 128)) return 0; #endif if(Fl::compose_state) { del = Fl::compose_state; |
