fixed missing short-cut key changes.

Introduced from 4d6e98d0f0.
This commit is contained in:
Hermet Park 2016-07-02 14:32:27 +09:00
parent fe4919db46
commit b71d9d2f26
2 changed files with 5 additions and 7 deletions

View File

@ -651,7 +651,7 @@ ctrl_func(Evas_Event_Key_Down *event)
tools_highlight_update(EINA_TRUE);
return EINA_TRUE;
}
//Swallow Dummy Object
//Dummy Object
if (!strcmp(event->key, "u") || !strcmp(event->key, "U"))
{
tools_dummy_update(EINA_TRUE);
@ -863,10 +863,8 @@ keygrabber_init(app_data *ad)
GRAB_ADD("M", modifier);
GRAB_ADD("t", modifier);
GRAB_ADD("T", modifier);
GRAB_ADD("i", modifier);
GRAB_ADD("I", modifier);
GRAB_ADD("o", modifier);
GRAB_ADD("O", modifier);
GRAB_ADD("u", modifier);
GRAB_ADD("U", modifier);
GRAB_ADD("p", modifier);
GRAB_ADD("P", modifier);
GRAB_ADD("e", modifier);

View File

@ -217,7 +217,7 @@ tools_init(Evas_Object *parent)
td->highlight_btn = btn;
btn = tools_btn_create(live_view_ly, "dummy",
_("Dummy parts (Ctrl + W)<br>"
_("Dummy parts (Ctrl + U)<br>"
"Display virtual images for the swallow and<br>"
"spacer parts."),
dummy_cb);
@ -228,7 +228,7 @@ tools_init(Evas_Object *parent)
td->swallow_btn = btn;
btn = tools_btn_create(live_view_ly, "wireframes_icon",
_("Wireframes (Ctrl + P)<br>"
_("Wireframes (Ctrl + W)<br>"
"Display wireframes to identify the parts<br>"
"boundaries."),
wireframes_cb);