diff --git a/README b/README index c42b403..6c00b01 100644 --- a/README +++ b/README @@ -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 diff --git a/src/bin/main.c b/src/bin/main.c index 33221cb..b7388d5 100644 --- a/src/bin/main.c +++ b/src/bin/main.c @@ -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;