I added ~filesize to the list of _variables internally…
…and am trying to figure out how to get it to be visible in the Metadata View:
The only thing I see different with those Picard internal tag _variables
is them being listed separately in tags
, under preserved tags and other than the two that already are there, length and rating, which do have descriptor entries.
PRESERVED_TAGS = (
'~bitrate',
'~bits_per_sample',
'~channels',
'~dirname',
'~extension',
'~filename',
'~format',
So I also added them to the list of descriptors:
'engineer': N_('Engineer'),
'~filename': N_('Filename'), # amd
'~filesize': N_('Filesize'), # amd
'genre': N_('Genre'),
'genresort' : N_('Genre Sort'), # amd
…and they’re able to be selected as an option to keep on top of the list, but something else is still keeping them out of the metadata
window. Otherwise, any tag will show up without any extra code. Since ~length
is one of those internal ones that is also a selection, and will show up in the metadata
window. What else might be keeping that from there?