tFix listing windows in _NET_CLIENT_LIST - glazier - window management experiments
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 912db91e8462687863d790a5f7fe313851cc601c
 (DIR) parent f1d1115f4f154d1e8b0b7f5f24c61de0a06afc20
 (HTM) Author: Willy Goiffon <dev@z3bra.org>
       Date:   Mon, 15 Jun 2020 20:56:39 +0200
       
       Fix listing windows in _NET_CLIENT_LIST
       
       Diffstat:
         M ewmh.c                              |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/ewmh.c b/ewmh.c
       t@@ -192,7 +192,7 @@ ewmh_clientlist()
                        if (ewmh_type(w[i]) != NORMAL)
                                xcb_change_window_attributes(conn, w[i], XCB_CW_OVERRIDE_REDIRECT, &(int){1});
        
       -                if (!wm_is_listable(w[i], 0))
       +                if (wm_is_listable(w[i], 0))
                                l[c++] = w[i];
                }