nicification2
This commit is contained in:
parent
d0693a2df3
commit
e852e4185b
|
@ -74,6 +74,8 @@ class ProfileEditor:
|
||||||
else:
|
else:
|
||||||
label_text = key.replace ('_', ' ').capitalize ()
|
label_text = key.replace ('_', ' ').capitalize ()
|
||||||
label = gtk.Label (label_text)
|
label = gtk.Label (label_text)
|
||||||
|
wrapperbox = gtk.HBox()
|
||||||
|
wrapperbox.pack_start(label, False, True)
|
||||||
|
|
||||||
type = self.source_get_type (key)
|
type = self.source_get_type (key)
|
||||||
value = self.source_get_value (key)
|
value = self.source_get_value (key)
|
||||||
|
@ -176,7 +178,7 @@ class ProfileEditor:
|
||||||
if hasattr(widget, 'set_tooltip_text') and self.data.has_key (key):
|
if hasattr(widget, 'set_tooltip_text') and self.data.has_key (key):
|
||||||
widget.set_tooltip_text (self.data[key][1])
|
widget.set_tooltip_text (self.data[key][1])
|
||||||
|
|
||||||
table.attach (label, 0, 1, row, row + 1, gtk.EXPAND|gtk.FILL, gtk.FILL)
|
table.attach (wrapperbox, 0, 1, row, row + 1, gtk.EXPAND|gtk.FILL, gtk.FILL)
|
||||||
table.attach (widget, 1, 2, row, row + 1, gtk.EXPAND|gtk.FILL, gtk.FILL)
|
table.attach (widget, 1, 2, row, row + 1, gtk.EXPAND|gtk.FILL, gtk.FILL)
|
||||||
row += 1
|
row += 1
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue