From ed255b7b33667faab18cc65a321bcc8bd442f5c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Wed, 17 Jan 2024 13:43:47 -0800 Subject: [PATCH] HeaderLabel: allow secondary text to use markup --- lib/Widgets/HeaderLabel.vala | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Widgets/HeaderLabel.vala b/lib/Widgets/HeaderLabel.vala index 6750ca08b..3101de191 100644 --- a/lib/Widgets/HeaderLabel.vala +++ b/lib/Widgets/HeaderLabel.vala @@ -38,6 +38,7 @@ public class Granite.HeaderLabel : Gtk.Widget { } } else if (value != null) { secondary_label = new Gtk.Label (value) { + use_markup = true, wrap = true, xalign = 0 };