Fix not focusing the manage X box on a hierarchical sub-item

This commit is contained in:
Charles Haley 2011-02-24 14:49:44 +00:00
parent 68a798eba1
commit 7b7ac2f91e

View File

@ -386,7 +386,8 @@ class TagsView(QTreeView): # {{{
self.db.field_metadata[key]['is_custom']:
self.context_menu.addAction(_('Manage %s')%category,
partial(self.context_menu_handler, action='open_editor',
category=tag.name if tag else None, key=key))
category=getattr(tag, 'original_name', tag.name)
if tag else None, key=key))
elif key == 'authors':
self.context_menu.addAction(_('Manage %s')%category,
partial(self.context_menu_handler, action='edit_author_sort'))