fix: hide activity role tooltip during translation (#4145)

This commit is contained in:
ggurdin 2025-09-25 13:37:39 -04:00 committed by GitHub
parent 65b0747929
commit ac4cb98d34
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -40,7 +40,9 @@ class ActivityRoleTooltipState extends State<ActivityRoleTooltip> {
@override
Widget build(BuildContext context) {
if (!room.showActivityChatUI || room.ownRole?.goal == null) {
if (!room.showActivityChatUI ||
room.ownRole?.goal == null ||
widget.choreographer.itController.willOpen) {
return const SizedBox();
}