Call PtAppAddFd instead of PtAppAddFdPri because of redraw bugs it

was causing.
r=kedl
This commit is contained in:
Jerry.Kirk%Nexwarecorp.com 1999-10-28 12:43:46 +00:00
parent 476d0ee9ec
commit 53fd291dfa

View File

@ -568,9 +568,8 @@ NS_IMETHODIMP nsAppShell::ListenToEventQueue(nsIEventQueue *aQueue,
if (aListen)
{
/* Priority 0=Invalid 1=Really Slow, trying 5 */
err = PtAppAddFdPri(NULL,aQueue->GetEventQueueSelectFD(),Pt_FD_READ,
event_processor_callback,aQueue,15);
err = PtAppAddFd(NULL,aQueue->GetEventQueueSelectFD(),Pt_FD_READ,
event_processor_callback,aQueue);
if (err == -1)
{
printf("nsAppShell::ListenToEventQueue Error calling PtAppAddFd errno=<%d>\n", errno);