2006-06-28 Don Allingham <don@gramps-project.org>

* src/DataViews/_PedigreeView.py (PedigreeView.rebuild): use gtk.Arrow
	instead of unicode characters



svn: r6972
This commit is contained in:
Don Allingham 2006-06-28 18:46:35 +00:00
parent 236c976093
commit fb8d1bc994
2 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2006-06-28 Don Allingham <don@gramps-project.org>
* src/DataViews/_PedigreeView.py (PedigreeView.rebuild): use gtk.Arrow
instead of unicode characters
2006-06-27 Brian Matherly <brian@gramps-project.org>
* src/GampsLogger/_ErrorReportAssistant.py: fix error message in Windows
* src/plugins/DetDescendantReport.py: remove duplicate birth events

View File

@ -879,7 +879,9 @@ class PedigreeView(PageView.PersonNavView):
# Add navigation arrows
if lst[0]:
l = gtk.Button("")
#l = gtk.Button("◀")
l=gtk.Button()
l.add(gtk.Arrow(gtk.ARROW_LEFT, gtk.SHADOW_IN))
childlist = find_children(self.dbstate.db,lst[0][0])
if childlist:
l.connect("clicked",self.on_show_child_menu)
@ -888,7 +890,9 @@ class PedigreeView(PageView.PersonNavView):
l.set_sensitive(False)
ymid = int(math.floor(ymax/2))
table_widget.attach(l,0,1,ymid,ymid+1,0,0,0,0)
l = gtk.Button("")
#l = gtk.Button("▶")
l = gtk.Button()
l.add(gtk.Arrow(gtk.ARROW_RIGHT, gtk.SHADOW_IN))
if lst[1]:
l.connect("clicked",self.on_childmenu_changed,lst[1][0].handle)
self.tooltips.set_tip(l, _("Jump to father"))
@ -896,7 +900,8 @@ class PedigreeView(PageView.PersonNavView):
l.set_sensitive(False)
ymid = int(math.floor(ymax/4))
table_widget.attach(l,xmax,xmax+1,ymid-1,ymid+2,0,0,0,0)
l = gtk.Button("")
l = gtk.Button()
l.add(gtk.Arrow(gtk.ARROW_RIGHT, gtk.SHADOW_IN))
if lst[2]:
l.connect("clicked",self.on_childmenu_changed,lst[2][0].handle)
self.tooltips.set_tip(l, _("Jump to mother"))