From 612bb3a7612757866a9a2136a6178d1e426a53ee Mon Sep 17 00:00:00 2001 From: Consolatis <35009135+Consolatis@users.noreply.github.com> Date: Sat, 16 Mar 2024 09:45:54 +0100 Subject: [PATCH] [dirty] font_extend logging --- src/common/font.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/font.c b/src/common/font.c index 3b997333..53bd4662 100644 --- a/src/common/font.c +++ b/src/common/font.c @@ -65,6 +65,8 @@ int font_height(struct font *font) { PangoRectangle rectangle = font_extents(font, "abcdefg"); + wlr_log(WLR_ERROR, "font %p height: %d, name: %s -> %d", + font, font->size, font->name, rectangle.height); return rectangle.height; }