aboutsummaryrefslogtreecommitdiff
path: root/src/win.c
diff options
context:
space:
mode:
authorallusive-dev <[email protected]>2023-11-15 15:13:38 +1100
committerallusive-dev <[email protected]>2023-11-15 15:13:38 +1100
commitf481ea09f9f69c96575662d7b67d290f380aee83 (patch)
tree9155652619c26d1a028ddc63eb7a0c29094dd0d3 /src/win.c
parentUpdate README.md (diff)
downloadcompfy-1.6.0.tar.xz
compfy-1.6.0.zip
merge with compfy again lol1.6.0
Diffstat (limited to 'src/win.c')
-rw-r--r--src/win.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/win.c b/src/win.c
index fdb2d32..4d96bb7 100644
--- a/src/win.c
+++ b/src/win.c
@@ -25,7 +25,7 @@
#include "config.h"
#include "list.h"
#include "log.h"
-#include "picom.h"
+#include "compfy.h"
#include "region.h"
#include "render.h"
#include "string_utils.h"
@@ -3133,7 +3133,7 @@ struct managed_win *find_managed_window_or_parent(session_t *ps, xcb_window_t wi
// Using find_win here because if we found a unmanaged window we know
// about, we can stop early.
while (wid && wid != ps->root && !(w = find_win(ps, wid))) {
- // xcb_query_tree probably fails if you run picom when X is
+ // xcb_query_tree probably fails if you run compfy when X is
// somehow initializing (like add it in .xinitrc). In this case
// just leave it alone.
auto reply = xcb_query_tree_reply(ps->c, xcb_query_tree(ps->c, wid), NULL);