From 2c5e878c27bf32433fa2db87ab6302545a9df605 Mon Sep 17 00:00:00 2001 From: allusive-dev Date: Tue, 31 Oct 2023 10:38:55 +1100 Subject: [PATCH] Fix transient windows crashing picom. #1 --- src/config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.c b/src/config.c index cb5e08a..1e4fc8f 100644 --- a/src/config.c +++ b/src/config.c @@ -830,7 +830,7 @@ char *parse_config(options_t *opt, const char *config_file, bool *shadow_enable, .animations = true, .animation_for_open_window = OPEN_WINDOW_ANIMATION_ZOOM, - .animation_for_transient_window = OPEN_WINDOW_ANIMATION_NONE, + .animation_for_transient_window = OPEN_WINDOW_ANIMATION_ZOOM, .animation_for_unmap_window = OPEN_WINDOW_ANIMATION_ZOOM, .animation_for_workspace_switch_in = OPEN_WINDOW_ANIMATION_ZOOM, .animation_for_workspace_switch_out = OPEN_WINDOW_ANIMATION_ZOOM, @@ -871,7 +871,7 @@ char *parse_config(options_t *opt, const char *config_file, bool *shadow_enable, .use_ewmh_active_win = false, .focus_blacklist = NULL, - .detect_transient = false, + .detect_transient = true, .detect_client_leader = false, .no_ewmh_fullscreen = false,