The new code makes the STR #2598 changes unix-specific so it does not interact with the WIN32 platform. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8618 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
0f20c065ce
commit
239489c4b8
@ -64,6 +64,9 @@ int Fl::compose(int& del) {
|
||||
Fl::e_keysym == FL_Tab || Fl::e_keysym == FL_Escape || Fl::e_state&(FL_META | FL_CTRL) ) {
|
||||
return 0;
|
||||
}
|
||||
#elif defined(WIN32)
|
||||
unsigned char ascii = (unsigned)e_text[0];
|
||||
if ((e_state & (FL_ALT | FL_META)) && !(ascii & 128)) return 0;
|
||||
#else
|
||||
unsigned char ascii = (unsigned)e_text[0];
|
||||
if ((e_state & (FL_ALT | FL_META | FL_CTRL)) && !(ascii & 128)) return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user