4306: Fix selector problems related to tagging update

svn: r16027
This commit is contained in:
Nick Hall 2010-10-23 13:11:35 +00:00
parent 07663753ff
commit e1097d1a53
2 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ class SelectNote(BaseSelector):
(_('Preview'), 350, BaseSelector.TEXT, 0),
(_('ID'), 75, BaseSelector.TEXT, 1),
(_('Type'), 100, BaseSelector.TEXT, 2),
(_('Marker'), 100, BaseSelector.TEXT, 3)
(_('Tags'), 100, BaseSelector.TEXT, 3)
]
def get_from_handle_func(self):

View File

@ -95,8 +95,8 @@ class PeopleBaseModel(object):
"""
_GENDER = [ _(u'female'), _(u'male'), _(u'unknown') ]
# The following is accessed from PersonView - CHECK
COLUMN_INT_ID = 9 # dynamic calculation of column indices
# The following is accessed from the Person Selector
COLUMN_INT_ID = 10 # dynamic calculation of column indices
# LRU cache size
_CACHE_SIZE = 250