Allow multiple sort keys on tree views

svn: r14673
This commit is contained in:
Nick Hall 2010-03-07 17:48:58 +00:00
parent 665e62edd1
commit d34e83d9ba

View File

@ -85,7 +85,7 @@ class Node(object):
def __init__(self, ref, parent, sortkey, handle):
self.name = sortkey
if sortkey:
self.sortkey = conv_unicode_tosrtkey_ongtk(sortkey)
self.sortkey = map(conv_unicode_tosrtkey_ongtk, sortkey)
else:
self.sortkey = None
self.ref = ref