diff options
author | emersion <contact@emersion.fr> | 2018-07-07 09:48:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-07 09:48:48 +0100 |
commit | 305fac293abf490d8c08eff372527b6892015703 (patch) | |
tree | 2675baaf165acdfc7f8090f9a8750eb971535659 /sway/tree/view.c | |
parent | fc4ed6f037f28102921492ee0b0457771defa80f (diff) | |
parent | 0046eed96903c745142208c40aa5f10d0b5931cb (diff) | |
download | sway-305fac293abf490d8c08eff372527b6892015703.tar.xz |
Merge pull request #2222 from RyanDwyer/fix-utf8-titles
Fix titles when container titles contain UTF-8 characters
Diffstat (limited to 'sway/tree/view.c')
-rw-r--r-- | sway/tree/view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c index e46cb327..3ef79fa8 100644 --- a/sway/tree/view.c +++ b/sway/tree/view.c @@ -923,7 +923,7 @@ static void update_marks_texture(struct sway_view *view, double scale = output->sway_output->wlr_output->scale; int width = 0; - int height = config->font_height * scale; + int height = view->swayc->title_height * scale; cairo_t *c = cairo_create(NULL); get_text_size(c, config->font, &width, NULL, scale, false, "%s", buffer); |