tootle-linux-client/src/Widgets/AlignedLabel.vala

12 lines
185 B
Vala
Raw Normal View History

2018-04-14 14:09:06 +02:00
using Gtk;
public class AlignedLabel : Gtk.Label {
public AlignedLabel (string text) {
label = text;
halign = Gtk.Align.END;
//margin_start = 12;
}
}