parent_hovered_font_color beats hovered_font_color
The only workaround is to split the tree up
from:
Code: Select all
button (inventory_slot)
βββ sprite
βββ request_count (count_label)
βββ item_count (count_label)
Code: Select all
container
βββ button (inventory_slot)
βΒ Β βββ sprite
βββ count_container
βββ request_count (count_label)
βββ item_count (count_label)
I would add a custom label prototype, but I'm doing this for a scenario The gui above:
Code: Select all
container
βββ button (inventory_slot)
βΒ Β βββ sprite
βΒ Β βββ fake_count (count_label)
βββ count_container
βββ request_count (count_label)
βββ item_count (count_label)