discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=7c054f272bc4a193bf241ffa0cd593e08ee94922
commit 7c054f272bc4a193bf241ffa0cd593e08ee94922 Author: Mike Blumenkrantz <[email protected]> Date: Wed Mar 16 14:33:06 2016 -0400 disable wizard mouse binding page's next button if all modifiers are disabled this breaks the user experience! --- src/modules/wizard/page_065.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/wizard/page_065.c b/src/modules/wizard/page_065.c index 88bf7ad..c279a3c 100644 --- a/src/modules/wizard/page_065.c +++ b/src/modules/wizard/page_065.c @@ -38,6 +38,8 @@ modifiers_changed(void *data, Evas_Object *obj, void *event_info EINA_UNUSED) binding |= (1 << i); if (binding == current) return; current = binding; + e_wizard_button_next_enable_set(!!current); + if (!current) return; EINA_LIST_FOREACH(e_bindings->mouse_bindings, l, ebm) if (eina_streq(ebm->action, "window_move") || eina_streq(ebm->action, "window_resize") || --
