From f498c4123b6c20672a90a48438f69b00ad46bc8b Mon Sep 17 00:00:00 2001 From: wsryu91 <44548074+wsryu91@users.noreply.github.com> Date: Thu, 4 Jan 2024 13:46:30 +0900 Subject: [PATCH] =?UTF-8?q?ImeMode=20=3D=20ImeMode.On=20=E2=86=92=20ImeMod?= =?UTF-8?q?e.NoControl?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When inserting text in Korean Windows, there was an error where English letters were entered full-width instead of half-width. Changes were made to correct errors. --- src/Greenshot.Editor/Drawing/TextContainer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Greenshot.Editor/Drawing/TextContainer.cs b/src/Greenshot.Editor/Drawing/TextContainer.cs index a49fd4bee..7cc606f90 100644 --- a/src/Greenshot.Editor/Drawing/TextContainer.cs +++ b/src/Greenshot.Editor/Drawing/TextContainer.cs @@ -281,7 +281,7 @@ namespace Greenshot.Editor.Drawing { _textBox = new TextBox { - ImeMode = ImeMode.On, + ImeMode = ImeMode.NoControl, Multiline = true, AcceptsTab = true, AcceptsReturn = true, @@ -692,4 +692,4 @@ namespace Greenshot.Editor.Drawing return r.Contains(x, y); } } -} \ No newline at end of file +}