Author Topic: space before dash  (Read 428 times)

monkey

  • Full Member
  • ***
  • Posts: 148
is it possible to insert space just after the year (green) and before the dash and the same for Grouping (Blue)
i'musing virtual tag

karbock

  • Sr. Member
  • ****
  • Posts: 549
Can you post your current virtual tag formula?

monkey

  • Full Member
  • ***
  • Posts: 148
Here are
Virt Year :           {font: Segoe UI Symbol;Regular;10}{color: 0,118,59}{contrast: 100}<Year>
Virt Grouping :   {font: Segoe UI Symbol;Regular;10}{color: 176,0,0}{contrast: 100}<Grouping>
Virt Genre :         {font: Segoe UI Symbol;Regular;10}{color: 0,0,220}{contrast: 100}<Genre>

karbock

  • Sr. Member
  • ****
  • Posts: 549
I guess that there's a bug causing MusicBee to remove the space before the centred dot when using "color" clauses,
since the album sub-header fields are displayed correctly (with space, dot, space) without "color" clauses.

Until correction of the bug, there are 2 options:

(1) Use one integrated virtual formula:
Code
{font: Segoe UI Symbol;Regular;10}{contrast: 100}{color: 0,118,59}<Year>{color: default}" • "{color: 176,0,0}<Grouping>{color: default}" • "{color: 0,0,220}<Genre>

(2) Go on using the 3 virtual formulas, but append the following at the end of each:
Code
" "{color: default}
In this case, the dot is not exactly centred, though.
Last Edit: March 30, 2024, 05:26:12 PM by karbock

monkey

  • Full Member
  • ***
  • Posts: 148
thanks a lot ! the first one is better !!!