From b316301991a804abab0862f51531749733de1ff2 Mon Sep 17 00:00:00 2001 From: wwyang <137208408@qq.com> Date: Mon, 15 Jan 2024 22:05:16 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E9=99=A4=E9=94=AE=E7=9B=98=E9=9A=90?= =?UTF-8?q?=E8=97=8F=E6=97=B6=E7=9A=84=E5=9B=9E=E8=B0=83(=E4=BC=9A?= =?UTF-8?q?=E8=A7=A6=E5=8F=91TextField=E7=9A=84onSubmitted=E5=B1=9E?= =?UTF-8?q?=E6=80=A7)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: wwyang <137208408@qq.com> --- .../ets/embedding/engine/systemchannels/TextInputChannel.ets | 1 - 1 file changed, 1 deletion(-) diff --git a/shell/platform/ohos/flutter_embedding/flutter/src/main/ets/embedding/engine/systemchannels/TextInputChannel.ets b/shell/platform/ohos/flutter_embedding/flutter/src/main/ets/embedding/engine/systemchannels/TextInputChannel.ets index c76ee78635..c02c3ad005 100644 --- a/shell/platform/ohos/flutter_embedding/flutter/src/main/ets/embedding/engine/systemchannels/TextInputChannel.ets +++ b/shell/platform/ohos/flutter_embedding/flutter/src/main/ets/embedding/engine/systemchannels/TextInputChannel.ets @@ -119,7 +119,6 @@ export default class TextInputChannel { onConnectionClosed(inputClientId: number): void { Log.d(TAG, "Sending 'onConnectionClosed' message."); - this.channel.invokeMethod("TextInputClient.onConnectionClosed", [inputClientId]); } performPrivateCommand(inputClientId: number, action: string, data: ESObject) { -- Gitee