discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=e65c64ff6329f17e6ee2cf66f97f64f36294a3ba
commit e65c64ff6329f17e6ee2cf66f97f64f36294a3ba Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Fri Jul 21 16:20:03 2017 -0400 use 1 second for screen config apply delay I want my life back from all this time spent waiting... --- src/bin/e_randr2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_randr2.c b/src/bin/e_randr2.c index 1690585e3..1dae6a0f3 100644 --- a/src/bin/e_randr2.c +++ b/src/bin/e_randr2.c @@ -235,7 +235,7 @@ _cb_fade_animator(void *data EINA_UNUSED) { if (_target_to == 255) { - _apply_delay = ecore_timer_loop_add(5.0, _cb_delay_timer, NULL); + _apply_delay = ecore_timer_loop_add(1.0, _cb_delay_timer, NULL); _do_apply(); _screen_check_unconfigured(e_randr2, e_randr2_cfg); } --