Commit 8fe365a0 authored by Erik Reider's avatar Erik Reider

Fix Label widget not filled horizontally

parent 7f73bbc4
......@@ -38,6 +38,8 @@ namespace SwayNotificationCenter.Widgets {
label_widget.set_justify (Gtk.Justification.LEFT);
label_widget.set_xalign (0.0f);
label_widget.set_yalign (0.0f);
label_widget.set_halign (Gtk.Align.FILL);
label_widget.set_hexpand (true);
append (label_widget);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment