* NEWS: Update.

* src/FamilyView.py (on_child_list_button_press): Add edit person
callback on Shift+click; (sp_key_press, child_key_press): Replace
Ctrl+Insert with Shift+Insert for adding new people.
* src/PedView.py (on_show_child_menu): Markup children with children.
* doc/gramps-manual/C/keybind.xml: Update.
* doc/gramps-manual/C/faq.xml: Update.
* doc/gramps-manual/C/filtref.xml: Update.


svn: r2412
This commit is contained in:
Alex Roitman
2003-12-01 04:22:15 +00:00
parent a4a2eb580a
commit 448fc5db0b
7 changed files with 310 additions and 57 deletions

View File

@@ -314,12 +314,12 @@ class PedigreeView:
cname = GrampsCfg.nameof(child)
menuitem = gtk.MenuItem(None)
if find_children(child):
label = gtk.Label('<i>%s</i>' % cname)
label = gtk.Label('<b><i>%s</i></b>' % cname)
else:
label = gtk.Label(cname)
label.set_use_markup(gtk.TRUE)
label.show()
label.set_justify(gtk.JUSTIFY_LEFT)
label.set_alignment(0,0)
menuitem.add(label)
myMenu.append(menuitem)
menuitem.set_data(_PERSON,child)