Quote:
Originally Posted by theducks
Did you also change a partition tweak to get it to look like that?
|
The below tweak I assume controls the number of characters shown in the partition. The below is the default from the manual.
Code:
# Control partitioning of Tag Browser
categories_collapsed_name_template = r'{first.sort:shorten(4,,0)} - {last.sort:shorten(4,,0)}'
categories_collapsed_rating_template = r'{first.avg_rating:4.2f:ifempty(0)} - {last.avg_rating:4.2f:ifempty(0)}'
categories_collapsed_popularity_template = r'{first.count:d} - {last.count:d}'
The following is what I have in my tweak. (I have no clue when I changed it or who gave me the change)
Code:
# Control partitioning of Tag Browser
categories_collapsed_name_template = '{first.sort:re((.*?)(\\,|$).*,\\1)} - {last.sort:re((.*?)(\\,|$).*,\\1)}'
categories_collapsed_rating_template = '{first.avg_rating:4.2f:ifempty(0)} - {last.avg_rating:4.2f:ifempty(0)}'
categories_collapsed_popularity_template = '{first.count:d} - {last.count:d}'
I also use FN LN but prefer author_sort for the tag browser so I use this tweak.
Code:
# Use author sort in Tag Browser
categories_use_field_for_author_name = 'author_sort'
Good Luck.