From 81c1f1c9fcf1fa8a9ab394c0e49d977a80efaae1 Mon Sep 17 00:00:00 2001 From: Boram Park Date: Wed, 7 Jun 2017 15:59:23 +0900 Subject: [PATCH] ecore_evas_wayland: ignore the output transform event when iconified App will be drawn when uniconified Change-Id: I5f7f532c89d25bce8309db2ef002ad1fd36bbcb9 --- src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c b/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c index 5c15b9a..50e3cc4 100755 --- a/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c +++ b/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c @@ -509,6 +509,7 @@ _ecore_evas_wl_common_cb_output_transform(void *data, int type EINA_UNUSED, void if (!ee) return ECORE_CALLBACK_PASS_ON; if (!(wdata = ee->engine.data)) return ECORE_CALLBACK_PASS_ON; + if (ecore_wl_window_iconified_get(wdata->win)) return ECORE_CALLBACK_PASS_ON; output = ecore_wl_window_output_find(wdata->win); if (output != ev->output) return ECORE_CALLBACK_PASS_ON; -- 2.7.4