diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2016-02-18 13:42:15 +0000 |
---|---|---|
committer | Jon Turney <jon.turney@dronecode.org.uk> | 2016-02-18 14:29:07 +0000 |
commit | e5e2158056aaa435e4838129c586d392b38b3cee (patch) | |
tree | edcbe461554f1d36ec24a610ddfb3dcfb1b6b432 /hw | |
parent | efd9f2c5a6899d2fdec2de76a2f56eacd54f6d4f (diff) |
Raise limit on X display size from 4Kx4K to 32Kx32K
Diffstat (limited to 'hw')
-rw-r--r-- | hw/xwin/winrandr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/xwin/winrandr.c b/hw/xwin/winrandr.c index 1b28e5223..0be1c9964 100644 --- a/hw/xwin/winrandr.c +++ b/hw/xwin/winrandr.c @@ -279,10 +279,10 @@ winRandRInit(ScreenPtr pScreen) /* The screen doesn't have to be limited to the actual - monitor size (we can have scrollbars :-), so what is - the upper limit? + monitor size (we can have scrollbars :-), so set the + upper limit to the maximum coordinates X11 can use. */ - RRScreenSetSizeRange(pScreen, 0, 0, 4096, 4096); + RRScreenSetSizeRange(pScreen, 0, 0, 32768, 32768); return TRUE; } |