tRequest 32 atoms (arbitrary) everytime in wm_get_atom() - libwm - X windows manipulation library
(HTM) git clone git://z3bra.org/libwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit a8a3813cdad5563e3ca680420a5dcfef6ff2dbd6
(DIR) parent c05c8910d3e502415906c72a0b9f9758aa452816
(HTM) Author: Willy Goiffon <dev@z3bra.org>
Date: Sat, 6 Jun 2020 11:36:07 +0200
Request 32 atoms (arbitrary) everytime in wm_get_atom()
Diffstat:
M libwm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/libwm.c b/libwm.c
t@@ -221,7 +221,7 @@ wm_get_atom(xcb_window_t wid, xcb_atom_t atom, xcb_atom_t type, size_t *len)
xcb_get_property_cookie_t c;
xcb_get_property_reply_t *r;
- c = xcb_get_property(conn, 0, wid, atom, type, 0, 1);
+ c = xcb_get_property(conn, 0, wid, atom, type, 0, 32);
r = xcb_get_property_reply(conn, c, NULL);
if (!r)
return NULL;