diff options
Diffstat (limited to 'src/events.c')
-rw-r--r-- | src/events.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/events.c b/src/events.c index 1cdbb21..d3b4004 100644 --- a/src/events.c +++ b/src/events.c @@ -78,6 +78,12 @@ cleanup_frame (rp_window_frame *frame) { hide_transient_for_between (last_win, win); } + else if (last_win->transient && win->transient && + last_win->transient_for == win->transient_for) + { + /* Both last_win and win have the same transient_for so we + don't need to hide anything more */ + } else { hide_transient_for (last_win); |