Updated InternalTwtchUserInfo

When TwitchUserInfo starts expanding, or collapsing the extra info,
ensure that User Promo is being hidden/shown accordingly.
This commit is contained in:
Mario Steele 2026-03-08 16:21:01 -05:00
parent 6a384d3052
commit 11e4590d8e

View file

@ -10,3 +10,7 @@ var chatter: Chatter:
tui.populate_from_chatter(chatter) tui.populate_from_chatter(chatter)
if not up: return if not up: return
up.chatter = value up.chatter = value
func _ready() -> void:
tui.extra_expanding.connect(func(x): if x: up.visible = false)
tui.extra_expanded.connect(func(x): if not x: up.visible = true)