diff options
| author | allusive-dev <[email protected]> | 2023-10-31 10:38:55 +1100 |
|---|---|---|
| committer | allusive-dev <[email protected]> | 2023-10-31 10:38:55 +1100 |
| commit | 2c5e878c27bf32433fa2db87ab6302545a9df605 (patch) | |
| tree | 2627200d971c3d484bf10b700da3b8e5f10e4ad9 /src | |
| parent | Update README.md (diff) | |
| download | compfy-1.0.4.tar.xz compfy-1.0.4.zip | |
Fix transient windows crashing picom. #11.0.4
Diffstat (limited to 'src')
| -rw-r--r-- | src/config.c | 4 |
1 files 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, |