From dd03e1f0b1130fbc570d0e71563b8c5408ac927b Mon Sep 17 00:00:00 2001 From: Nimetu Date: Sat, 18 Aug 2018 14:15:32 +0300 Subject: [PATCH] Fixed: Remove onenter callback from html textarea --HG-- branch : develop --- code/nel/src/gui/group_html.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/code/nel/src/gui/group_html.cpp b/code/nel/src/gui/group_html.cpp index fdf32f44c..b606a093d 100644 --- a/code/nel/src/gui/group_html.cpp +++ b/code/nel/src/gui/group_html.cpp @@ -4627,6 +4627,7 @@ namespace NLGUI if (multiLine) templateParams.push_back (std::pair ("multi_min_line", toString(rows))); templateParams.push_back (std::pair ("want_return", multiLine?"true":"false")); + templateParams.push_back (std::pair ("onenter", "")); templateParams.push_back (std::pair ("enter_recover_focus", "false")); if (maxlength > 0) templateParams.push_back (std::pair ("max_num_chars", toString(maxlength)));