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

[STR New]

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


1.3.x-r7398: XIM works well when wrap_mode(1,N)(N>0) on.
1.3.x-r7473: XIM broken when wrap_mode(1,N)(N>0) on.
If I try to input CJK characters with X input method in fltk window, the
window will be frozen.


#include <FL/Fl.H>
#include <FL/Fl_Double_Window.H>
#include <FL/Fl_Text_Editor.H>
#include <FL/Fl_Text_Buffer.H>

#define LEN 10
int main(int argc, char **argv)
{

   Fl_Double_Window w(100,100,320,240);
   Fl_Text_Editor e(0,0,320,240);
   Fl_Text_Buffer b;
   e.buffer(&b);
   e.wrap_mode(1,LEN);

   w.show();
   Fl::run();

   return 0;
}


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

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

Reply via email to