aboutsummaryrefslogtreecommitdiffstats
path: root/swaybar/render.c
diff options
context:
space:
mode:
authorLibravatar Ian Fan <ianfan0@gmail.com>2018-10-20 21:12:54 +0100
committerLibravatar Ian Fan <ianfan0@gmail.com>2018-10-20 21:21:57 +0100
commit1844a5bafbf5a6ca0b40a1db4757d1bafb1805cd (patch)
tree55fe01811bc8ac0785ce9798335bfd15553fa708 /swaybar/render.c
parentMerge pull request #2900 from Hi-Angel/master (diff)
downloadsway-1844a5bafbf5a6ca0b40a1db4757d1bafb1805cd.tar.gz
sway-1844a5bafbf5a6ca0b40a1db4757d1bafb1805cd.tar.zst
sway-1844a5bafbf5a6ca0b40a1db4757d1bafb1805cd.zip
swaybar: render with minimum height, nominally text height
Diffstat (limited to 'swaybar/render.c')
-rw-r--r--swaybar/render.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/swaybar/render.c b/swaybar/render.c
index 097eb462..85e7542f 100644
--- a/swaybar/render.c
+++ b/swaybar/render.c
@@ -448,7 +448,9 @@ static uint32_t render_to_cairo(cairo_t *cairo, struct swaybar_output *output) {
448 } 448 }
449 cairo_paint(cairo); 449 cairo_paint(cairo);
450 450
451 uint32_t max_height = 0; 451 int th;
452 get_text_size(cairo, config->font, NULL, &th, NULL, output->scale, false, "");
453 uint32_t max_height = (th + WS_VERTICAL_PADDING * 4) / output->scale;
452 /* 454 /*
453 * Each render_* function takes the actual height of the bar, and returns 455 * Each render_* function takes the actual height of the bar, and returns
454 * the ideal height. If the actual height is too short, the render function 456 * the ideal height. If the actual height is too short, the render function