Ver código fonte

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 anos atrás
pai
commit
17e28044f1
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      unix/xserver/hw/vnc/XserverDesktop.cc

+ 1
- 1
unix/xserver/hw/vnc/XserverDesktop.cc Ver arquivo

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

Carregando…
Cancelar
Salvar