entrance: KP_Enter and Enter are emitting "entrance,auth,check" signal

Now this signal is called in any way if the auth starts, so a theme can
catch this signal to react to the change.
This commit is contained in:
Marcel Hollerbach 2014-04-30 21:34:49 +02:00
parent 427e66d8a9
commit 570c312da5
1 changed files with 2 additions and 2 deletions

View File

@ -180,11 +180,11 @@ _login_key_down_cb(void *data, int type EINA_UNUSED, void *event)
if (!strcmp(ev->key, "KP_Enter"))
{
_login_check_auth(data);
elm_object_signal_emit(data, "entrance,auth,check", "");
}
else if (!strcmp(ev->key, "Return"))
{
_login_check_auth(data);
elm_object_signal_emit(data, "entrance,auth,check", "");
}
else if (!strcmp(ev->key, "BackSpace"))
{