discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=40df7bddc8b2fb4d981361aa9a8d2f8fb2990e30
commit 40df7bddc8b2fb4d981361aa9a8d2f8fb2990e30 Author: Mike Blumenkrantz <[email protected]> Date: Mon Aug 21 10:16:30 2017 -0400 make grab dialog text read a bit more clearly --- src/bin/e_grab_dialog.c | 15 +++++++-------- src/modules/conf_bindings/e_int_config_mousebindings.c | 5 ----- 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/src/bin/e_grab_dialog.c b/src/bin/e_grab_dialog.c index 98a9ec157..ff50becf3 100644 --- a/src/bin/e_grab_dialog.c +++ b/src/bin/e_grab_dialog.c @@ -1,12 +1,11 @@ #include "e.h" -#define TEXT_PRESS_KEY_SEQUENCE _("Please press key combination,<ps/><ps/>" \ - "or <hilight>Escape</hilight> to abort.") -#define TEXT_PRESS_MOUSE_BINIDING_SEQUENCE _("Please hold any modifier you want<ps/>" \ - "and press any button on your mouse,<ps/>or roll a" \ - " wheel, to assign mouse binding." \ - "<ps/>Press <hilight>Escape</hilight> to abort.") - +#define TEXT_PRESS_KEY_SEQUENCE _("Please press a key combination.<ps/><ps/>" \ + "Press <hilight>Escape</hilight> to abort.") +#define TEXT_PRESS_MOUSE_BINDING_SEQUENCE _("Please hold any modifier you want<ps/>" \ + "and press any button on your mouse<ps/>" \ + "or roll a wheel to assign mouse binding.<ps/><ps/>" \ + "Press <hilight>Escape</hilight> to abort.") static Eina_Bool _e_grab_dialog_key_handler(void *data, int type EINA_UNUSED, Ecore_Event_Key *ev) { @@ -117,7 +116,7 @@ e_grab_dialog_show(Evas_Object *parent, Eina_Bool is_mouse, Ecore_Event_Handler_ eg->dia = e_dialog_new(parent, "E", "_mousebind_getmouse_dialog"); e_dialog_title_set(eg->dia, _("Mouse Binding Combination")); e_dialog_icon_set(eg->dia, "preferences-desktop-mouse", 48); - e_dialog_text_set(eg->dia, TEXT_PRESS_MOUSE_BINIDING_SEQUENCE); + e_dialog_text_set(eg->dia, TEXT_PRESS_MOUSE_BINDING_SEQUENCE); } else { diff --git a/src/modules/conf_bindings/e_int_config_mousebindings.c b/src/modules/conf_bindings/e_int_config_mousebindings.c index e013f991a..804a1def6 100644 --- a/src/modules/conf_bindings/e_int_config_mousebindings.c +++ b/src/modules/conf_bindings/e_int_config_mousebindings.c @@ -3,11 +3,6 @@ #define TEXT_NO_PARAMS _("<None>") #define EXAMPLE_STRING "example : " -#define TEXT_PRESS_MOUSE_BINIDING_SEQUENCE _("Please hold any modifier you want<ps/>" \ - "and press any button on your mouse,<ps/>or roll a" \ - " wheel, to assign mouse binding." \ - "<ps/>Press <hilight>Escape</hilight> to abort.") - static void *_create_data(E_Config_Dialog *cfd); static void _free_data(E_Config_Dialog *cfd, E_Config_Dialog_Data *cfdata); static int _basic_apply_data(E_Config_Dialog *cfd, E_Config_Dialog_Data *cfdata); --
