Skip to content
Snippets Groups Projects
Commit e153a1b4 authored by Cédric Krier's avatar Cédric Krier :atom:
Browse files

Fix typo from Gtk.Align instead of Gtk.Alignment

issue8139
parent 3cb5828e
No related branches found
No related tags found
No related merge requests found
......@@ -173,9 +173,9 @@
label = language['name'] + _(':')
label = Gtk.Label(
label=label,
halign=Gtk.Alignment.END,
valign=(Gtk.Alignment.START if self.widget.expand
else Gtk.Alignment.FILL))
halign=Gtk.Align.END,
valign=(Gtk.Align.START if self.widget.expand
else Gtk.Align.FILL))
table.attach(
label, 0, 1, i, i + 1,
xoptions=Gtk.AttachOptions.FILL, xpadding=2)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment