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

git pushed a commit to branch v-0.25.0
in repository enlightenment.

View the commit online.

commit e8e01ac1686d7d88d61346cf392a3eca5d6affea
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Tue Mar 22 12:41:01 2022 +0000

    winlist - fix 0 item lenth rows - have at least 1 item
    
    this fixes winlist large mode sometimes losing windows in the view.
    
    @fix
---
 src/modules/winlist/e_winlist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/modules/winlist/e_winlist.c b/src/modules/winlist/e_winlist.c
index a0f58dc8e..d997d5f54 100644
--- a/src/modules/winlist/e_winlist.c
+++ b/src/modules/winlist/e_winlist.c
@@ -778,7 +778,7 @@ _e_winlist_large_item_height_set(Evas_Coord h)
         edje_object_size_min_calc(ww->bg_object, &mw, &mh);
         evas_object_size_hint_min_set(ww->bg_object, mw, mh);
         rowlen += mw;
-        if (rowlen > lw)
+        if ((rowlen > lw) && (mw != rowlen))
           {
              rowlen = 0;
              boxes = elm_box_children_get(bl->data);

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

Reply via email to