live_edit: changed short cut key.

This commit is contained in:
ChunEon Park 2014-08-13 19:38:46 +09:00
parent 178ca51dcb
commit eca2bb7889
2 changed files with 2 additions and 2 deletions

2
README
View File

@ -49,7 +49,7 @@ Ctrl+Right = On/Off Full Live View
Ctrl+Top = On/Off Full Console View
Ctrl+Bottom = On/Off Full Editors View
Ctrl+T = Insert Defaut Template Code
Ctrl+M = On/Off Live View Edit Mode
Ctrl+E = On/Off Live View Edit Mode
Ctrl+Mouse Wheel Up = View Scale Up / Font Size Up
Ctrl+Mouse Wheel Down = View Scale Down / Font Size Down
Ctrl+Shift+B = Insert Part Template Code: Textblock

View File

@ -201,7 +201,7 @@ ctrl_func(app_data *ad, const char *key)
return ECORE_CALLBACK_DONE;
}
//Live Edit
if (!strcmp(key, "m") || !strcmp(key, "M"))
if (!strcmp(key, "e") || !strcmp(key, "E"))
{
live_edit_toggle();
return ECORE_CALLBACK_DONE;