reduce wizard connman timeout timer to 0.5s

dbus is not this slow.
This commit is contained in:
Mike Blumenkrantz 2016-03-16 14:32:15 -04:00
parent 604bf1ea4e
commit 9eba966126
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ wizard_page_show(E_Wizard_Page *pg)
_check_connman_owner, pg);
if (connman_timeout)
ecore_timer_del(connman_timeout);
connman_timeout = ecore_timer_add(2.0, _connman_fail, pg);
connman_timeout = ecore_timer_add(0.5, _connman_fail, pg);
have_connman = EINA_TRUE;
e_wizard_button_next_enable_set(0);
}