Browse Source

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
tags/v1.2.90
Pierre Ossman 11 years ago
parent
commit
17e28044f1
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      unix/xserver/hw/vnc/XserverDesktop.cc

+ 1
- 1
unix/xserver/hw/vnc/XserverDesktop.cc View File

@@ -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,

Loading…
Cancel
Save