diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-05-15 08:07:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-15 08:07:35 -0400 |
commit | 76bdbe938f2e59da2f8685637b8d2073487c405b (patch) | |
tree | 86139cae959151358077c4a15047f93679801a7e /sway | |
parent | 95f6d0deba26436445b45d4d056c1f6dd2ee82da (diff) | |
parent | 79e970d86eb514b280979e60aad2ca1468bd21ea (diff) | |
download | sway-76bdbe938f2e59da2f8685637b8d2073487c405b.tar.xz |
Merge pull request #1986 from emersion/clip-title-texture
Correctly clip title texture if necessary
Diffstat (limited to 'sway')
-rw-r--r-- | sway/desktop/output.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c index 0350e437..b12130d9 100644 --- a/sway/desktop/output.c +++ b/sway/desktop/output.c @@ -409,6 +409,7 @@ static void render_container_simple_border_normal(struct sway_output *output, WL_OUTPUT_TRANSFORM_NORMAL, 0.0, output->wlr_output->transform_matrix); + texture_box.width = box.width * output_scale; render_texture(output->wlr_output, output_damage, title_texture, &texture_box, matrix, 1.0); } |