DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2598
Version: 1.3-current


TinyCoreLinux3 includes fltk editor. But when using this editor,
accelerator keys with Ctrl don't work correctly. This problem appears only
on Xvesa. On Xorg-7.5.tcz works correctry.
I send a patch for this problem.


Link: http://www.fltk.org/str.php?L2598
Version: 1.3-current
--- Fl_compose.cxx.orig
+++ Fl_compose.cxx
@@ -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-bugs mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-bugs

Reply via email to