summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/desktop/output.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index d17a6e14..9b0f1ae3 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -308,7 +308,11 @@ static void render_container_simple_border_normal(struct sway_output *output,
308 308
309 // Title text 309 // Title text
310 if (title_texture) { 310 if (title_texture) {
311 wlr_renderer_scissor(renderer, &box); 311 struct wlr_box scissor_box;
312 wlr_box_transform(&box,
313 wlr_output_transform_invert(output->wlr_output->transform),
314 output->swayc->width, output->swayc->height, &scissor_box);
315 wlr_renderer_scissor(renderer, &scissor_box);
312 wlr_render_texture(renderer, title_texture, 316 wlr_render_texture(renderer, title_texture,
313 output->wlr_output->transform_matrix, box.x, box.y, 1); 317 output->wlr_output->transform_matrix, box.x, box.y, 1);
314 wlr_renderer_scissor(renderer, NULL); 318 wlr_renderer_scissor(renderer, NULL);