Ephoto: Add ctrl+delete key binding to the single image view.

This commit is contained in:
Stephen okra Houston 2015-12-29 10:46:55 -06:00
parent 911804ba72
commit aa18a9c320
1 changed files with 4 additions and 0 deletions

View File

@ -2350,6 +2350,10 @@ _key_down(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED,
else
_flip_vert(sb);
}
else if (!strcmp(k, "Delete"))
{
_delete_image(sb, NULL, NULL);
}
return;
}