This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository enlightenment.

View the commit online.

commit 5e694600439de12a78af25a3721781cf8082f7ba
Author: Alastair Poole <[email protected]>
AuthorDate: Sat Apr 18 14:20:37 2026 +0100

    ibox: don't always use defer and fix live previews.
    
    Make sure our live previews work, there was a race with deferred
    refill which led to fallback code with the previews keeping them
    static.
---
 src/modules/ibox/e_mod_main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/modules/ibox/e_mod_main.c b/src/modules/ibox/e_mod_main.c
index c2bc701b4..842eed26a 100644
--- a/src/modules/ibox/e_mod_main.c
+++ b/src/modules/ibox/e_mod_main.c
@@ -1217,14 +1217,14 @@ _ibox_cb_event_client_remove(void *data EINA_UNUSED, int type EINA_UNUSED, void
 static Eina_Bool
 _ibox_cb_event_client_iconify(void *data EINA_UNUSED, int type EINA_UNUSED, void *event EINA_UNUSED)
 {
-   _ibox_refill_deferred_schedule();
+   _ibox_refill_all();
    return ECORE_CALLBACK_PASS_ON;
 }
 
 static Eina_Bool
 _ibox_cb_event_client_uniconify(void *data EINA_UNUSED, int type EINA_UNUSED, void *event EINA_UNUSED)
 {
-   _ibox_refill_deferred_schedule();
+   _ibox_refill_all();
    return ECORE_CALLBACK_PASS_ON;
 }
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to