bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=59ae22f8ec894fdf6a2ecf3dc202c4dd1c49ab7b
commit 59ae22f8ec894fdf6a2ecf3dc202c4dd1c49ab7b Author: Marcel Hollerbach <mar...@osg.samsung.com> Date: Mon Apr 5 18:29:34 2021 +0200 swipe_config: only warn on x not on wl --- src/modules/conf_bindings/e_int_config_swipebindings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/conf_bindings/e_int_config_swipebindings.c b/src/modules/conf_bindings/e_int_config_swipebindings.c index a982e58d3..bc56fc99c 100644 --- a/src/modules/conf_bindings/e_int_config_swipebindings.c +++ b/src/modules/conf_bindings/e_int_config_swipebindings.c @@ -998,7 +998,7 @@ e_int_config_swipebindings(Evas_Object *parent EINA_UNUSED, const char *params) v->basic.create_widgets = _basic_create_widgets; v->override_auto_apply = 1; - if (!_user_part_of_input()) + if (e_comp->comp_type == E_PIXMAP_TYPE_X && !_user_part_of_input()) { e_module_dialog_show(NULL, "Gesture Recognition", "Your user is not part of the input group, libinput cannot be used."); } --