2006-07-20 Don Allingham <don@gramps-project.org>

* src/GrampsWidgets.py: fix spacing on link label



svn: r7053
This commit is contained in:
Don Allingham 2006-07-21 03:37:12 +00:00
parent 705f6e2365
commit 731d4d80f7
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,6 @@
2006-07-20 Don Allingham <don@gramps-project.org>
* src/GrampsWidgets.py: fix spacing on link label
2006-07-20 Alex Roitman <shura@gramps-project.org>
* src/plugins/GraphViz.py (GraphViz.__init__): Better error handling.
* src/plugins/IndivComplete.py: Use NameDisplay.

View File

@ -59,9 +59,9 @@ class LinkLabel(gtk.EventBox):
self.label.set_alignment(0, 0.5)
hbox = gtk.HBox()
hbox.add(self.label)
hbox.pack_start(self.label, False, False, 4)
if label[1]:
hbox.add(GenderLabel(label[1]))
hbox.pack_start(GenderLabel(label[1]), False, False, 4)
self.add(hbox)
self.connect('button-press-event', func, handle)
@ -184,10 +184,10 @@ class DualMarkupLabel(gtk.HBox):
label.set_alignment(0, 0.5)
label.set_use_markup(True)
self.add(label)
self.pack_start(label, False, False, 0)
b = GenderLabel(alt)
b.set_use_markup(True)
self.add(b)
self.pack_start(b, False, False, 4)
self.show()
class IntEdit(gtk.Entry):