From 8651634f9b40215b469826d8e9353d1cad8a18c0 Mon Sep 17 00:00:00 2001 From: Joseph <119084558+DerjenigeUberMensch@users.noreply.github.com> Date: Sat, 23 Nov 2024 11:00:34 +0800 Subject: [PATCH] Fixed early return when not suppose to happen in events.c, propertynotify() This explains alot actually, and might break alot of stuff, maybe --- src/events.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/events.c b/src/events.c index bccfd73..ec2e9c9 100644 --- a/src/events.c +++ b/src/events.c @@ -1566,8 +1566,11 @@ propertynotify(XCBGenericEvent *event) else if(atom == netatom[NetWMIcon]) { type = PropIcon; } - /* not found return */ - return; + else + { + /* not found return */ + return; + } } /* encase we fuck up later down the line */ if(type == PropNone || type >= PropLAST)