nanogui@linuxhacker.org
nanogui@linuxhacker.org
Hi,
Flnx/DJGPP has the same problem - I can see all demos, but mouse didn't move.
Regards,
Victor.
Greg Haerr wrote:
> : On my system, the mouse cursor doesn't move and keyboard input
> : doesn't have any response.
> : It seems something goes wrong with the event delivering mechanism.
>
> Which demo are you running? What is the microwindows screen
> driver that you're using? Which mouse driver? I haven't seen this problem.
>
> Regards,
>
> Greg
>
> :
> : The following is a dirty fix to the problem:
> :
> : Originally, in Fl_x.cxx, Row 209:
> : --------------------------------
> : // GrCheckNextEvent(&ev);
> : // if(ev.type!=0)
> : if(GrPeekEvent(&ev))
> : {
> : do_queued_events();
> : return time;
> : }
> :
> : Dirty fix:
> : ---------
> : GrCheckNextEvent(&ev);
> : if(ev.type!=GR_EVENT_TYPE_NONE)
> : // if(GrPeekEvent(&ev))
> : {
> : fl_handle(ev);
> : do_queued_events();
> : return time;
> : }
> :
> : Hope this helps.
> :
> : Sincerely,
> : Murphy
> :
> :
> :
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: nanogui-unsubscribe@linuxhacker.org
> For additional commands, e-mail: nanogui-help@linuxhacker.org
nanogui@linuxhacker.org