1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-05-08 10:46:17 +02:00

Disable direct scanout for surfaces with popups

This commit is contained in:
novenary 2023-02-28 10:33:39 +02:00 committed by Simon Ser
parent b757ef94ef
commit b28e1b0d3c

View File

@ -496,6 +496,12 @@ static bool scan_out_fullscreen_view(struct sway_output *output,
if (n_surfaces != 1) {
return false;
}
size_t n_popups = 0;
output_view_for_each_popup_surface(output, view,
count_surface_iterator, &n_popups);
if (n_popups > 0) {
return false;
}
if (surface->buffer == NULL) {
return false;