Skip to content

Commit

Permalink
tiling: Don't render popups for maximized elements
Browse files Browse the repository at this point in the history
  • Loading branch information
Drakulix committed Nov 23, 2023
1 parent ea14033 commit c79c75e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/shell/layout/tiling/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4999,7 +4999,9 @@ where
} else {
window_elements.extend(w_elements);
}
popup_elements.extend(p_elements)
if !mapped.is_maximized(false) {
popup_elements.extend(p_elements);
}
}
}
});
Expand Down

0 comments on commit c79c75e

Please sign in to comment.