diff options
| author | allusive-dev <[email protected]> | 2023-09-28 10:20:49 +1000 |
|---|---|---|
| committer | allusive-dev <[email protected]> | 2023-09-28 10:20:49 +1000 |
| commit | e24b8ed0b48138ceacb7715b9e267ee57db76535 (patch) | |
| tree | c1d5d6a7d49d8ba18b16ba7720e225c58096c8a2 /src/picom.c | |
| parent | Update README.md (diff) | |
| download | compfy-0.2.2.tar.xz compfy-0.2.2.zip | |
Diffstat (limited to 'src/picom.c')
| -rw-r--r-- | src/picom.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/picom.c b/src/picom.c index eb479f3..83716cb 100644 --- a/src/picom.c +++ b/src/picom.c @@ -2144,6 +2144,8 @@ static session_t *session_init(int argc, char **argv, Display *dpy, c2_list_postprocess(ps, ps->o.invert_color_list) && c2_list_postprocess(ps, ps->o.opacity_rules) && c2_list_postprocess(ps, ps->o.rounded_corners_blacklist) && + c2_list_postprocess(ps, ps->o.animation_open_blacklist) && + c2_list_postprocess(ps, ps->o.animation_unmap_blacklist) && c2_list_postprocess(ps, ps->o.focus_blacklist))) { log_error("Post-processing of conditionals failed, some of your rules " "might not work"); @@ -2524,6 +2526,8 @@ static void session_destroy(session_t *ps) { free_wincondlst(&ps->o.paint_blacklist); free_wincondlst(&ps->o.unredir_if_possible_blacklist); free_wincondlst(&ps->o.rounded_corners_blacklist); + free_wincondlst(&ps->o.animation_open_blacklist); + free_wincondlst(&ps->o.animation_unmap_blacklist); // Free tracked atom list { |