mirror of
https://github.com/fltk/fltk.git
synced 2026-06-01 06:14:28 +08:00
Fix STR #2598 with OP patch.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8552 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
+1
-1
@@ -66,7 +66,7 @@ int Fl::compose(int& del) {
|
|||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
unsigned char ascii = (unsigned)e_text[0];
|
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
|
#endif
|
||||||
if(Fl::compose_state) {
|
if(Fl::compose_state) {
|
||||||
del = Fl::compose_state;
|
del = Fl::compose_state;
|
||||||
|
|||||||
Reference in New Issue
Block a user