aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop')
-rw-r--r--sway/desktop/output.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index 03af4239..d17a6e14 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -308,12 +308,10 @@ 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 double x = (con->x + con->sway_view->border_thickness) 311 wlr_renderer_scissor(renderer, &box);
312 * output->wlr_output->scale;
313 double y = (con->y + con->sway_view->border_thickness)
314 * output->wlr_output->scale;
315 wlr_render_texture(renderer, title_texture, 312 wlr_render_texture(renderer, title_texture,
316 output->wlr_output->transform_matrix, x, y, 1); 313 output->wlr_output->transform_matrix, box.x, box.y, 1);
314 wlr_renderer_scissor(renderer, NULL);
317 } 315 }
318} 316}
319 317