diff --git a/code/nel/src/gui/group_html.cpp b/code/nel/src/gui/group_html.cpp
index c5fccd164..5c561f543 100644
--- a/code/nel/src/gui/group_html.cpp
+++ b/code/nel/src/gui/group_html.cpp
@@ -3973,7 +3973,7 @@ namespace NLGUI
// ***************************************************************************
- CInterfaceGroup *CGroupHTML::addTextArea(const std::string &templateName, const char *name, uint /* rows */, uint cols, bool multiLine, const ucstring &content, uint maxlength)
+ CInterfaceGroup *CGroupHTML::addTextArea(const std::string &templateName, const char *name, uint rows, uint cols, bool multiLine, const ucstring &content, uint maxlength)
{
// In a paragraph ?
if (!_Paragraph)
@@ -3993,6 +3993,8 @@ namespace NLGUI
templateParams.push_back (std::pair ("id", name));
templateParams.push_back (std::pair ("prompt", ""));
templateParams.push_back (std::pair ("multiline", multiLine?"true":"false"));
+ 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 ("enter_recover_focus", "false"));
if (maxlength > 0)
diff --git a/code/ryzom/client/data/gamedev/interfaces_v3/login_widgets.xml b/code/ryzom/client/data/gamedev/interfaces_v3/login_widgets.xml
index 932b96549..67145ff4c 100644
--- a/code/ryzom/client/data/gamedev/interfaces_v3/login_widgets.xml
+++ b/code/ryzom/client/data/gamedev/interfaces_v3/login_widgets.xml
@@ -117,11 +117,12 @@
color="255 255 255 255"
sizeref_eb="w"
render_layer="0"
+ multi_min_line="0"
>
-
+
diff --git a/code/ryzom/client/data/gamedev/interfaces_v3/widgets.xml b/code/ryzom/client/data/gamedev/interfaces_v3/widgets.xml
index 5234846f1..075102c84 100644
--- a/code/ryzom/client/data/gamedev/interfaces_v3/widgets.xml
+++ b/code/ryzom/client/data/gamedev/interfaces_v3/widgets.xml
@@ -2793,6 +2793,7 @@
text_ref="BL BL"
child_resize_h="true"
multi_line="true"
+ multi_min_line="0"
x="0"
y="0"
w="0"
@@ -2872,6 +2873,7 @@
posref="#text_ref"
multi_line="#multi_line"
multi_line_space="0"
+ multi_min_line="#multi_min_line"
fontsize="#fontsize"
color="#color"
shadow="true"