Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Commit

Permalink
Fix transient windows crashing picom. #1
Browse files Browse the repository at this point in the history
  • Loading branch information
allusive-dev committed Oct 30, 2023
1 parent c22ee2b commit 2c5e878
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,

Expand Down

0 comments on commit 2c5e878

Please sign in to comment.