Revision: 4495
          http://tigervnc.svn.sourceforge.net/tigervnc/?rev=4495&view=rev
Author:   ossman_
Date:     2011-06-13 15:08:35 +0000 (Mon, 13 Jun 2011)

Log Message:
-----------
Flushing screen updates after 100 ms turned out to be too aggressive and
just gave an annoying window blinds effect that made things difficult to
read. Reduce things to 500 ms, which should be sufficient to tell that the
session isn't completely frozen.

Modified Paths:
--------------
    trunk/vncviewer/Viewport.h

Modified: trunk/vncviewer/Viewport.h
===================================================================
--- trunk/vncviewer/Viewport.h  2011-06-13 13:24:29 UTC (rev 4494)
+++ trunk/vncviewer/Viewport.h  2011-06-13 15:08:35 UTC (rev 4495)
@@ -103,7 +103,7 @@
   void damageRect(const rfb::Rect& r) {
     damage.assign_union(rfb::Region(r));
     if (!Fl::has_timeout(handleUpdateTimeout, this))
-      Fl::add_timeout(0.100, handleUpdateTimeout, this);
+      Fl::add_timeout(0.500, handleUpdateTimeout, this);
   };
 
   static void handleUpdateTimeout(void *data);


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image
Editing and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
_______________________________________________
Tigervnc-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tigervnc-commits

Reply via email to