ecore-evas-wl: Don't check window visibility on raising

As we won't get a request from a server to raise a window which is not
visible anyway, this check is useless.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2017-06-07 10:07:17 -04:00
parent 75aa39ff8d
commit 0a77b4e922
1 changed files with 1 additions and 1 deletions

View File

@ -1132,7 +1132,7 @@ _ecore_evas_wl_common_raise(Ecore_Evas *ee)
LOGFN(__FILE__, __LINE__, __FUNCTION__);
if ((!ee) || (!ee->visible)) return;
if (!ee) return;
wdata = ee->engine.data;
ecore_wl2_window_raise(wdata->win);
}