Fix childlist sorting
svn: r714
This commit is contained in:
parent
e49925cffb
commit
6419691915
@ -823,7 +823,6 @@ def on_person_list_select_row(obj,row,b,c):
|
|||||||
# orientation, and then call apply_filter to redraw the list
|
# orientation, and then call apply_filter to redraw the list
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
def on_person_list_click_column(obj,column):
|
def on_person_list_click_column(obj,column):
|
||||||
change_sort(column)
|
change_sort(column)
|
||||||
|
|
||||||
@ -1050,6 +1049,7 @@ def child_change_sort(clist,column,arrow):
|
|||||||
def sort_child_list(clist):
|
def sort_child_list(clist):
|
||||||
clist.freeze()
|
clist.freeze()
|
||||||
clist.sort()
|
clist.sort()
|
||||||
|
clist.sort()
|
||||||
if ListColors.get_enable():
|
if ListColors.get_enable():
|
||||||
try:
|
try:
|
||||||
oddbg = gtk.GdkColor(ListColors.oddbg[0],ListColors.oddbg[1],ListColors.oddbg[2])
|
oddbg = gtk.GdkColor(ListColors.oddbg[0],ListColors.oddbg[1],ListColors.oddbg[2])
|
||||||
@ -1617,7 +1617,8 @@ def display_marriage(family):
|
|||||||
active_spouse = family.getFather()
|
active_spouse = family.getFather()
|
||||||
|
|
||||||
child_list = family.getChildList()
|
child_list = family.getChildList()
|
||||||
# List is already sorted by birth date
|
child_list.sort(sort.by_birthdate)
|
||||||
|
|
||||||
attr = ""
|
attr = ""
|
||||||
for child in child_list:
|
for child in child_list:
|
||||||
status = _("Unknown")
|
status = _("Unknown")
|
||||||
|
Loading…
Reference in New Issue
Block a user