I wrote:
> I just want to make sure: This means that there is a purely internal error in 
> fltk, not that the user had set up their Fl_Text_Display incorrectly in some 
> way, yes?
>
> (I'm using current 1.3 code)

I was able to get a minimal example for once:

#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Text_Editor.H>

int main() {
  Fl_Window* w = new Fl_Window(186, 38);
  w->begin();
    Fl_Text_Editor *e = new Fl_Text_Editor(0, 0, 186, 38);
    e->wrap_mode(Fl_Text_Editor::WRAP_AT_BOUNDS, 0);
    e->buffer(new Fl_Text_Buffer);
  w->end();
  w->show();

  return Fl::run();
}

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

Reply via email to