examples: Correct the comments for key handling

Subscribers: cedric, jpeg

Differential Revision: https://phab.enlightenment.org/D5076
This commit is contained in:
Bryce Harrington 2017-08-08 15:54:06 +09:00 committed by Jean-Philippe Andre
parent 09d8ff787b
commit be5b16850b
1 changed files with 2 additions and 2 deletions

View File

@ -378,13 +378,13 @@ _interpolation_key_handle(void *data EINA_UNUSED,
puts(basic_shape_menu);
return;
}
if (strcmp(ev->key, "e") == 0) /* print help */
if (strcmp(ev->key, "e") == 0) /* exit */
{
_on_delete(d.ee);
return;
}
if (strcmp(ev->key, "b") == 0) /* print help */
if (strcmp(ev->key, "b") == 0) /* back to main menu */
{
_main_menu();
return;