diff options
| author | Simon Ser <contact@emersion.fr> | 2022-12-21 11:19:04 +0100 |
|---|---|---|
| committer | Simon Ser <contact@emersion.fr> | 2022-12-22 17:42:33 +0100 |
| commit | bd7466e1b7fa7bf567effeb4fcd7ab6f218dff25 (patch) | |
| tree | ee69039dd830c86e594f9163dde8df0931e10be3 /swaynag/main.c | |
| parent | fd0af78e43f4dd67a404f475c676b25ae38a4b82 (diff) | |
swaynag: drop swaynag_type.font
It's too easy to have this go out of sync with font_description.
Diffstat (limited to 'swaynag/main.c')
| -rw-r--r-- | swaynag/main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/swaynag/main.c b/swaynag/main.c index 2ce37831..679afbce 100644 --- a/swaynag/main.c +++ b/swaynag/main.c @@ -98,7 +98,9 @@ int main(int argc, char **argv) { sway_log(SWAY_DEBUG, "Anchors: %" PRIu32, swaynag.type->anchors); sway_log(SWAY_DEBUG, "Type: %s", swaynag.type->name); sway_log(SWAY_DEBUG, "Message: %s", swaynag.message); - sway_log(SWAY_DEBUG, "Font: %s", swaynag.type->font); + char *font = pango_font_description_to_string(swaynag.type->font_description); + sway_log(SWAY_DEBUG, "Font: %s", font); + free(font); sway_log(SWAY_DEBUG, "Buttons"); for (int i = 0; i < swaynag.buttons->length; i++) { struct swaynag_button *button = swaynag.buttons->items[i]; |
