efl.ui.textbox: Keyboard Enter will add paragraph separator

Summary:
efl.ui.textbox: Keyboard Enter will add paragraph separator and \n

because of D9064 Textbox multiline can work with paragraph separator

Reviewers: woohyun, segfaultxavi, bu5hm4n, zmike

Reviewed By: woohyun

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D11201
This commit is contained in:
Ali Alzyod 2020-08-05 11:22:14 +09:00 committed by WooHyun Jung
parent 2d7667aa44
commit 5d3497e506
1 changed files with 3 additions and 5 deletions

View File

@ -1186,16 +1186,14 @@ _key_down_cb(void *data EINA_UNUSED, Evas *e EINA_UNUSED, Evas_Object *obj, void
{
if (multiline)
{
//FIXME this should be Fixed when multiline set works fine with PARAGRAPH_SEPARATOR
//Now only \n can work with multiline set
//if (shift || efl_canvas_textblock_newline_as_paragraph_separator_get(obj))
if (shift || efl_canvas_textblock_newline_as_paragraph_separator_get(obj))
{
string = "\n";
}
/*else
else
{
string = _PARAGRAPH_SEPARATOR_UTF8;
}*/
}
}
}