Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir     : e16/e/src


Modified Files:
        pager.c 


Log Message:
Fix pager updates - optimize later?.
===================================================================
RCS file: /cvsroot/enlightenment/e16/e/src/pager.c,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -3 -r1.146 -r1.147
--- pager.c     28 May 2005 06:23:51 -0000      1.146
+++ pager.c     28 May 2005 14:33:45 -0000      1.147
@@ -699,7 +699,8 @@
      {
        if (p->do_redraw)
           doPagerRedraw(p);
-       if (p->do_update)
+       /* FIXME - We should update only if current area has changed. */
+       if (p->do_redraw || p->do_update)
           doPagerUpdate(p);
      }
    else
@@ -779,6 +780,9 @@
    if (!Conf.pagers.enable)
       return;
 
+#if 1                          /* FIXME - Can be optimized - Later */
+   gone = 1;
+#endif
    if (gone)
      {
        RedrawPagersForDesktop(EoGetDesk(ewin));




-------------------------------------------------------
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to