FofR configuration is 0.6
I added a feature that using different font of different genre.
Simply speaking, if genre is JPOP , japanese font will be used to display tag info.
if genre is CPOP , chinese font will be used and so do KPOP (korean song)
Here is my work I did.
I added global varaible in playlist view
$set_global(font_zh,Microsoft JhengHei)
$set_global(font_kr,Malgun Gothic)
$set_global(font_jp,Meiryo)

Under Panel UI, 'group by' and 'item display', I added
$puts(font_type,Microsoft Sans Serif)
$ifgreater($strstr(%genre%,CPOP),0,$puts(font,$get_global(font_zh)),)
$ifgreater($strstr(%genre%,JPOP),0,$puts(font,$get_global(font_jp)),)
$ifgreater($strstr(%genre%,KPOP),0,$puts(font,$get_global(font_kr)),)


Everything got fine. however when I highlight a track or highlight a album all text got blank
(This problem only occur on JPOP songs, CPOP, KPOP, EPOP has no such problem)
Here is JPOP


Here is KPOP

Here is CPOP

What are the settings I was missed or misconfigured ?



