ee_wayland: Don't offer a raise callback

Summary: This isn't possible under wayland.

Reviewers: devilhorns, zmike

Reviewed By: zmike

Subscribers: cedric, #committers, zmike

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D6276
This commit is contained in:
Derek Foreman 2018-06-15 13:17:39 -05:00
parent 0dc492087e
commit dc75d6b5d3
1 changed files with 1 additions and 13 deletions

View File

@ -1579,18 +1579,6 @@ _ecore_evas_wl_common_aux_hints_supported_update(Ecore_Evas *ee)
ee->prop.aux_hint.supported_list = ecore_wl2_window_aux_hints_supported_get(wdata->win);
}
static void
_ecore_evas_wl_common_raise(Ecore_Evas *ee)
{
Ecore_Evas_Engine_Wl_Data *wdata;
LOGFN(__FILE__, __LINE__, __FUNCTION__);
if (!ee) return;
wdata = ee->engine.data;
ecore_wl2_window_raise(wdata->win);
}
static void
_ecore_evas_wl_common_title_set(Ecore_Evas *ee, const char *title)
{
@ -2379,7 +2367,7 @@ static Ecore_Evas_Engine_Func _ecore_wl_engine_func =
NULL, // shaped_set
_ecore_evas_wl_common_show,
_ecore_evas_wl_common_hide,
_ecore_evas_wl_common_raise,
NULL, // raise
NULL, // lower
NULL, // activate
_ecore_evas_wl_common_title_set,