fix: hide activity role tooltip during translation (#4145)
This commit is contained in:
parent
65b0747929
commit
ac4cb98d34
1 changed files with 3 additions and 1 deletions
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue