From: Constantin Kaplinsky Date: Thu, 18 Dec 2008 12:13:51 +0000 (+0000) Subject: [Bugfix] Previous commit (r3204) included two lines that were left commented out... X-Git-Tag: v0.0.90~281 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=179e24fbf3836504345749937a5a4b599837ff3e;p=tigervnc.git [Bugfix] Previous commit (r3204) included two lines that were left commented out by accident. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3403 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- diff --git a/common/rfb/VNCSConnectionST.cxx b/common/rfb/VNCSConnectionST.cxx index 6bc1a91d..7153dd4e 100644 --- a/common/rfb/VNCSConnectionST.cxx +++ b/common/rfb/VNCSConnectionST.cxx @@ -568,8 +568,8 @@ void VNCSConnectionST::writeFramebufferUpdate() // If VideoPriority is 0, convert video updates to normal updates. if (rfb::Server::videoPriority == 0) { - // Region videoRegion(updates.getVideoArea()); - // updates.add_changed(videoRegion); + Region videoRegion(updates.getVideoArea()); + updates.add_changed(videoRegion); Rect nullRect(0, 0, 0, 0); updates.set_video_area(nullRect); }