aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nx-X11/programs/Xserver/hw/nxagent/Screen.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Screen.c b/nx-X11/programs/Xserver/hw/nxagent/Screen.c
index 37374ab1d..d642f63b7 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/Screen.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/Screen.c
@@ -3675,7 +3675,6 @@ RRModePtr nxagentRRCustomMode = NULL;
*/
void nxagentAdjustCustomMode(ScreenPtr pScreen)
{
- int doNotify = TRUE;
rrScrPrivPtr pScrPriv = rrGetScrPriv(pScreen);
RROutputPtr output;
@@ -3735,8 +3734,6 @@ void nxagentAdjustCustomMode(ScreenPtr pScreen)
RRCrtcSet(crtc, nxagentRRCustomMode, 0, 0, RR_Rotate_0, 1, &output);
RROutputChanged(output, 1);
-
- doNotify = FALSE;
}
pScrPriv -> lastSetTime = currentTime;
@@ -3745,10 +3742,7 @@ void nxagentAdjustCustomMode(ScreenPtr pScreen)
pScrPriv->configChanged = 1;
} /* if (pScrPriv) */
- if (doNotify)
- {
- RRScreenSizeNotify(pScreen);
- }
+ RRScreenSizeNotify(pScreen);
}
int nxagentChangeScreenConfig(int screen, int width, int height, int mmWidth, int mmHeight)