From bc13101cc229f4050b699382c2e093cda963308c Mon Sep 17 00:00:00 2001 From: Ryuan Choi Date: Fri, 4 Oct 2013 14:06:59 +0900 Subject: [PATCH] New lines are inserted in message text-box when press CTRL+M in Chatter. [Title] New lines are inserted in message text-box when press CTRL+M in Chatter. [Issue#] N_SE-52737 [Problem] Linux generate \r for Ctrl + M and it was translated to newline in webkit. [Cause] This behavior is not clear on all browsers. [Solution] Removed translation Change-Id: I698261d14a5f9c72af2b21f9eec046bc2937ef1a --- Source/WebCore/platform/efl/EflKeyboardUtilities.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/WebCore/platform/efl/EflKeyboardUtilities.cpp b/Source/WebCore/platform/efl/EflKeyboardUtilities.cpp index 3548435..a816fe2 100644 --- a/Source/WebCore/platform/efl/EflKeyboardUtilities.cpp +++ b/Source/WebCore/platform/efl/EflKeyboardUtilities.cpp @@ -290,7 +290,6 @@ static const KeyPressEntry keyPressEntries[] = { { '\t', 0, "InsertTab" }, { '\t', ShiftKey, "InsertBacktab" }, { '\r', 0, "InsertNewline" }, - { '\r', CtrlKey, "InsertNewline" }, { '\r', AltKey, "InsertNewline" }, { '\r', AltKey | ShiftKey, "InsertNewline" }, }; -- 2.7.4