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

[STR New]

Link: http://www.fltk.org/str.php?L2611
Version: 2.0-current


So it might just be me, but I can't cause a hang with two input browsers.
Could you post a minimal example that exemplifies the problem? I've
attached my own, and aside from the obviously poorly designed UI I don't
see any issues with it - it runs like I would expect.


Link: http://www.fltk.org/str.php?L2611
Version: 2.0-current
#include <fltk/InputBrowser.h>
#include <fltk/Window.h>
#include <fltk/run.h>

using namespace fltk;

int main(){
        Window win(1000, 150, "TEST");
        win.begin();
        InputBrowser first(20, 10, 400, 100, "1:");
        InputBrowser second(520, 10, 400, 100, "2:");
        win.end();
        win.show();
        run();
        return 0;
}
_______________________________________________
fltk-bugs mailing list
fltk-bugs@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk-bugs

Reply via email to