bu5hm4n pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=324b2661cee7ddd6576338597180fa795252e82a

commit 324b2661cee7ddd6576338597180fa795252e82a
Author: Marcel Hollerbach <mar...@osg.samsung.com>
Date:   Tue Jul 21 11:20:47 2020 +0200

    e_shelf: only reset autohide timer if we are not hidden
    
    otherwise we might hide shelfs even if the calendar is shown, without
    the possibility of reshowing them again.
---
 src/bin/e_shelf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/e_shelf.c b/src/bin/e_shelf.c
index f2023fca1..3f273bc70 100644
--- a/src/bin/e_shelf.c
+++ b/src/bin/e_shelf.c
@@ -509,7 +509,7 @@ e_shelf_toggle(E_Shelf *es, int show)
    E_OBJECT_TYPE_CHECK(es, E_SHELF_TYPE);
 
    es->toggle = show;
-   if (_e_shelf_autohide_timer_extend(es)) return;
+   if (!es->hidden && _e_shelf_autohide_timer_extend(es)) return;
    if (es->locked) return;
    es->interrupted = -1;
    es->urgent_show = 0;

-- 


Reply via email to