From 17e28044f1f8e8e1deb5e54f3622f69ac7b9c87e Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Mon, 27 Aug 2012 13:02:47 +0000 Subject: [PATCH] Fix silly typo that caused us to mishandle some SetDesktopSize requests. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4976 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- unix/xserver/hw/vnc/XserverDesktop.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix/xserver/hw/vnc/XserverDesktop.cc b/unix/xserver/hw/vnc/XserverDesktop.cc index 7e068b17..e777bd30 100644 --- a/unix/xserver/hw/vnc/XserverDesktop.cc +++ b/unix/xserver/hw/vnc/XserverDesktop.cc @@ -886,7 +886,7 @@ unsigned int XserverDesktop::setScreenLayout(int fb_width, int fb_height, } /* First we might need to resize the screen */ - if ((fb_width != pScreen->width) || (fb_height == pScreen->height)) { + if ((fb_width != pScreen->width) || (fb_height != pScreen->height)) { /* Try to retain DPI when we resize */ ret = RRScreenSizeSet(pScreen, fb_width, fb_height, pScreen->mmWidth * fb_width / pScreen->width, -- 2.39.5