mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 04:54:14 +01:00
Remove check for if floating view intersects output
This commit is contained in:
parent
7d2b33a458
commit
3281574fa3
@ -767,18 +767,6 @@ static void render_container(struct sway_output *output,
|
||||
}
|
||||
}
|
||||
|
||||
static bool floater_intersects_output(struct sway_container *floater,
|
||||
struct sway_container *output) {
|
||||
struct wlr_box box = {
|
||||
.x = floater->x,
|
||||
.y = floater->y,
|
||||
.width = floater->width,
|
||||
.height = floater->height,
|
||||
};
|
||||
return wlr_output_layout_intersects(root_container.sway_root->output_layout,
|
||||
output->sway_output->wlr_output, &box);
|
||||
}
|
||||
|
||||
static void render_floating_container(struct sway_output *soutput,
|
||||
pixman_region32_t *damage, struct sway_container *con) {
|
||||
if (con->type == C_VIEW) {
|
||||
@ -824,13 +812,11 @@ static void render_floating(struct sway_output *soutput,
|
||||
for (int k = 0; k < ws->floating->children->length; ++k) {
|
||||
struct sway_container *floater =
|
||||
ws->floating->children->items[k];
|
||||
if (floater_intersects_output(floater, soutput->swayc)) {
|
||||
render_floating_container(soutput, damage, floater);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static struct sway_container *output_get_active_workspace(
|
||||
struct sway_output *output) {
|
||||
|
Loading…
Reference in New Issue
Block a user