diff options
author | Jeremy Huddleston <jeremyhu@apple.com> | 2011-01-13 17:12:17 -0800 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@apple.com> | 2011-01-23 22:39:14 -0800 |
commit | 418bb57a3923311338baa8a85c0794a72e15ceeb (patch) | |
tree | ec22454fca6d4a627df38ab6eb7565fe1ff6e889 /hw/xquartz | |
parent | 6f52b10b9e8068e3deafb2bbb64b62175a208c49 (diff) |
XQuartz: Call RRScreenSizeNotify after handling externally-generated XP_EVENT_DISPLAY_CHANGED
We get an XP_EVENT_DISPLAY_CHANGED event when our display configuration is
changed. If this change was caused by hotplugging a monitor or Mac Display
Preferences changes by the user, we need to call RRScreenSizeNotify in order
to ensure new connections get the correct screen size.
http://xquartz.macosforge.org/trac/ticket/460
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
Diffstat (limited to 'hw/xquartz')
-rw-r--r-- | hw/xquartz/darwinEvents.c | 3 | ||||
-rw-r--r-- | hw/xquartz/quartz.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/hw/xquartz/darwinEvents.c b/hw/xquartz/darwinEvents.c index 9e03525b0..16fec4a01 100644 --- a/hw/xquartz/darwinEvents.c +++ b/hw/xquartz/darwinEvents.c @@ -280,10 +280,9 @@ static void DarwinEventHandler(int screenNum, InternalEvent *ie, DeviceIntPtr de case kXquartzDisplayChanged: DEBUG_LOG("kXquartzDisplayChanged\n"); QuartzUpdateScreens(); -#ifdef RANDR + /* Update our RandR info */ QuartzRandRUpdateFakeModes(TRUE); -#endif break; default: diff --git a/hw/xquartz/quartz.c b/hw/xquartz/quartz.c index 6c185a8eb..156de1395 100644 --- a/hw/xquartz/quartz.c +++ b/hw/xquartz/quartz.c @@ -244,6 +244,9 @@ void QuartzUpdateScreens(void) { DeliverEvents(pRoot, &e, 1, NullWindow); quartzProcs->UpdateScreen(pScreen); + + /* Tell RandR about the new size, so new connections get the correct info */ + RRScreenSizeNotify(pScreen); } static void pokeActivityCallback(CFRunLoopTimerRef timer, void *info) { |