From e961aded9d0d7926743c01a4b5e2a653f42840ae Mon Sep 17 00:00:00 2001 From: NicJA Date: Mon, 15 Dec 2014 18:00:31 +0000 Subject: [PATCH] do not skip sending the resize request if OPTION_DELAYXWINMAPPING is set - it is needed to trigger mapping the display and results in no xwindow opening if skipped. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@49849 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- arch/all-hosted/hidd/x11/onbitmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/all-hosted/hidd/x11/onbitmap.c b/arch/all-hosted/hidd/x11/onbitmap.c index 6e071a2afe..e2b2f4a41e 100644 --- a/arch/all-hosted/hidd/x11/onbitmap.c +++ b/arch/all-hosted/hidd/x11/onbitmap.c @@ -376,7 +376,7 @@ BOOL X11BM_SetMode(struct bitmap_data *data, HIDDT_ModeID modeid, * Don't do anything if the size actually won't change. * Prevents badly looking flashing, at least on Darwin. */ - if ((new_width == data->width) && (new_height == data->height)) + if (!(xsd->options & OPTION_DELAYXWINMAPPING) && (new_width == data->width) && (new_height == data->height)) return TRUE; port = CreateMsgPort(); -- 2.11.4.GIT