diff options
author | Constantin Kaplinsky <const@tightvnc.com> | 2006-05-17 05:04:25 +0000 |
---|---|---|
committer | Constantin Kaplinsky <const@tightvnc.com> | 2006-05-17 05:04:25 +0000 |
commit | ccc653a328a8d6c5de50c682fb66a8c308c90182 (patch) | |
tree | db2a3eb29cdbe49501ca31824ffbc48aab9e1a35 /vncviewer/DesktopWindow.cxx | |
parent | f403883adc81d59d4d8a79e02c581ad7d87a65f9 (diff) | |
download | tigervnc-ccc653a328a8d6c5de50c682fb66a8c308c90182.tar.gz tigervnc-ccc653a328a8d6c5de50c682fb66a8c308c90182.zip |
Minor fix to "invalidate" desktop child window instead of the parent window.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/branches/merge-with-vnc-4.1.1@555 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'vncviewer/DesktopWindow.cxx')
-rw-r--r-- | vncviewer/DesktopWindow.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vncviewer/DesktopWindow.cxx b/vncviewer/DesktopWindow.cxx index f536e0c7..acddf45e 100644 --- a/vncviewer/DesktopWindow.cxx +++ b/vncviewer/DesktopWindow.cxx @@ -866,7 +866,7 @@ DesktopWindow::setPF(const PixelFormat& pf) { buffer->setPF(pf); // Redraw the window - InvalidateRect(handle, 0, 0); + InvalidateRect(frameHandle, 0, FALSE); } void |