Call PtAppAddFd instead of PtAppAddFdPri because of redraw bugs it

was causing.
r=kedl


git-svn-id: svn://10.0.0.236/trunk@52078 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
Jerry.Kirk%Nexwarecorp.com
1999-10-28 12:43:46 +00:00
parent f06f488185
commit 4385e8d68e

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);