From a310de50c8ab720b9391fd6914c52037d69fa709 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 20 Jan 2014 21:05:51 -0500 Subject: [PATCH] block backlight updating during animation updating backlight in this context causes my backlight to never return to normal levels, and blocking it doesn't seem to be unreasonable here --- src/bin/e_backlight.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/e_backlight.c b/src/bin/e_backlight.c index 73adc25f8..62f752e6c 100644 --- a/src/bin/e_backlight.c +++ b/src/bin/e_backlight.c @@ -276,7 +276,8 @@ e_backlight_devices_get(void) static Eina_Bool _e_backlight_handler(void *d __UNUSED__, int type __UNUSED__, void *ev __UNUSED__) { - e_backlight_update(); + if (!bl_anim) + e_backlight_update(); return ECORE_CALLBACK_PASS_ON; }