Author: manolo
Date: 2011-04-01 02:00:07 -0700 (Fri, 01 Apr 2011)
New Revision: 8552
Log:
Fix STR #2598 with OP patch.

Modified:
   branches/branch-1.3/src/Fl_compose.cxx

Modified: branches/branch-1.3/src/Fl_compose.cxx
===================================================================
--- branches/branch-1.3/src/Fl_compose.cxx      2011-04-01 08:32:57 UTC (rev 
8551)
+++ branches/branch-1.3/src/Fl_compose.cxx      2011-04-01 09:00:07 UTC (rev 
8552)
@@ -66,7 +66,7 @@
   }
 #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;

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to