Silly question:
I have this rule in emblems:
Code:
program:
first_non_empty(
icons_cleanup_metadata(),
icons_cleanup_missingids(),
icons_cleanup_fanfic(),
icons_marked(),
if 'Cleanup' in virtual_libraries() then 'polish.png' fi
)
Line 7 results in a duplicate pin icon, like this:
So I tried replacing with
if is_marked() then '' fi and... wait, that's an empty:
Invis.png doesn't really work quite as expected either:
Is there a better option than first_non_empty? For now, I'm using
if is_marked() then 'nope' fi as that won't render anything.