From 900a74c9ed2a75515d78f2760537d90ce696e7dd Mon Sep 17 00:00:00 2001 From: renwj Date: Mon, 12 Jun 2023 16:02:59 +0800 Subject: [PATCH] =?UTF-8?q?[3.2.0]=20=E4=BF=AE=E6=AD=A3=E8=BD=A6=E8=81=8A?= =?UTF-8?q?=E8=81=8A=E5=81=B6=E7=8E=B0=E7=9A=84=E6=9D=A5=E7=94=B5=E7=95=8C?= =?UTF-8?q?=E9=9D=A2=E4=B8=8E=E7=AD=89=E5=BE=85=E6=8E=A5=E5=90=AC=E7=95=8C?= =?UTF-8?q?=E9=9D=A2=E9=87=8D=E5=8F=A0=E7=9A=84=E6=83=85=E5=86=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core/function/chat/facade/ui/CallChatWindowManager.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/function-impl/mogo-core-function-chat/src/main/java/com/mogo/eagle/core/function/chat/facade/ui/CallChatWindowManager.kt b/core/function-impl/mogo-core-function-chat/src/main/java/com/mogo/eagle/core/function/chat/facade/ui/CallChatWindowManager.kt index a750dbdf93..3d9ea56a48 100644 --- a/core/function-impl/mogo-core-function-chat/src/main/java/com/mogo/eagle/core/function/chat/facade/ui/CallChatWindowManager.kt +++ b/core/function-impl/mogo-core-function-chat/src/main/java/com/mogo/eagle/core/function/chat/facade/ui/CallChatWindowManager.kt @@ -405,6 +405,9 @@ internal class CallChatWindowManager { } private fun hide(view: View) { + if (view != null && view.visibility == View.VISIBLE) { + view.visibility = View.INVISIBLE + } if (!ViewCompat.isAttachedToWindow(view)) { return }