From d049b7a91232aa7242868a9c0681ed1f0b403b35 Mon Sep 17 00:00:00 2001 From: JunsuChoi Date: Thu, 12 Feb 2026 14:35:41 +0900 Subject: [PATCH 1/2] Fix composingExtent parsing in setEditingState --- flutter/shell/platform/tizen/channels/text_input_channel.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutter/shell/platform/tizen/channels/text_input_channel.cc b/flutter/shell/platform/tizen/channels/text_input_channel.cc index 6a69101c..a68936b8 100644 --- a/flutter/shell/platform/tizen/channels/text_input_channel.cc +++ b/flutter/shell/platform/tizen/channels/text_input_channel.cc @@ -257,7 +257,7 @@ void TextInputChannel::HandleMethodCall( TextRange(selection_base_value, selection_extent_value)); auto composing_base = args.FindMember(kComposingBaseKey); - auto composing_extent = args.FindMember(kComposingBaseKey); + auto composing_extent = args.FindMember(kComposingExtentKey); int composing_base_value = composing_base != args.MemberEnd() ? composing_base->value.GetInt() : -1; From 7379e40b14149081e0c57baabb010bef71b10081 Mon Sep 17 00:00:00 2001 From: JunsuChoi Date: Thu, 12 Feb 2026 14:54:06 +0900 Subject: [PATCH 2/2] Add mising return --- flutter/shell/platform/tizen/channels/text_input_channel.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/flutter/shell/platform/tizen/channels/text_input_channel.cc b/flutter/shell/platform/tizen/channels/text_input_channel.cc index a68936b8..7e2b3435 100644 --- a/flutter/shell/platform/tizen/channels/text_input_channel.cc +++ b/flutter/shell/platform/tizen/channels/text_input_channel.cc @@ -162,6 +162,7 @@ void TextInputChannel::HandleMethodCall( if (client_config.IsNull()) { result->Error(kBadArgumentError, "Could not set client, missing arguments."); + return; } client_id_ = client_id_json.GetInt();