From 64aa918a9ae8bf405d1f0a329788d2e756a128fe Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Dec 2025 10:08:29 +0000 Subject: [PATCH 1/3] Initial plan From 4b556edc44ceab69e1afb2ec3811da8e7b2fb153 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Dec 2025 10:14:21 +0000 Subject: [PATCH 2/3] Fix multiline TextInput excessive spacing by changing TXTNS_FITTOCONTENTWSP to TXTNS_FITTOCONTENT Co-authored-by: HariniMalothu17 <185761277+HariniMalothu17@users.noreply.github.com> --- .../Composition/TextInput/WindowsTextInputComponentView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vnext/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.cpp b/vnext/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.cpp index 25fc9437cf4..6e81734e134 100644 --- a/vnext/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.cpp +++ b/vnext/Microsoft.ReactNative/Fabric/Composition/TextInput/WindowsTextInputComponentView.cpp @@ -1308,7 +1308,7 @@ std::pair WindowsTextInputComponentView::GetContentSize() const no hdc, nullptr, nullptr, - static_cast(TXTNS_FITTOCONTENTWSP), + static_cast(TXTNS_FITTOCONTENT), reinterpret_cast(&extentHimetric), &naturalSize.cx, &naturalSize.cy); From d48f2f94a3eba36a6c9ef8a249143877ffa72904 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Dec 2025 10:16:16 +0000 Subject: [PATCH 3/3] Complete: Fix multiline TextInput excessive spacing issue Co-authored-by: HariniMalothu17 <185761277+HariniMalothu17@users.noreply.github.com> --- _codeql_detected_source_root | 1 + 1 file changed, 1 insertion(+) create mode 120000 _codeql_detected_source_root diff --git a/_codeql_detected_source_root b/_codeql_detected_source_root new file mode 120000 index 00000000000..945c9b46d68 --- /dev/null +++ b/_codeql_detected_source_root @@ -0,0 +1 @@ +. \ No newline at end of file