hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=17d7879eea4640f58c126ce58d0880a6b04f14f5
commit 17d7879eea4640f58c126ce58d0880a6b04f14f5 Author: ChunEon Park <[email protected]> Date: Fri Feb 13 18:28:57 2015 +0900 bin/about: wrap sentences by word. --- data/about/ABOUT | 6 ++---- src/bin/menu.c | 1 + 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/data/about/ABOUT b/data/about/ABOUT index 963dede..5167170 100644 --- a/data/about/ABOUT +++ b/data/about/ABOUT @@ -1,10 +1,8 @@ <font_size=11><b>[Enventor v0.4.0]</b></font_size> -This is an EDC editor with some convenient functions. -It's band new and was only started near the begining of June 2013, so expecting it to do everything a mature script editor does is a bit premature, but considering it's young age, it does a lot. +This is an EDC editor with some convenient functions. It's band new and was only started near the begining of June 2013, so expecting it to do everything a mature script editor does is a bit premature, but considering it's young age, it does a lot. -Please note that some features may not quite function correctly or completely -less EFL 1.12. Newer would be better. +Please note that some features may not quite function correctly or completely less EFL 1.12. Newer would be better. Please see http://www.enlightenment.org for information on these. diff --git a/src/bin/menu.c b/src/bin/menu.c index 3cc3f43..e3d21fe 100644 --- a/src/bin/menu.c +++ b/src/bin/menu.c @@ -233,6 +233,7 @@ about_open(menu_data *md) elm_entry_scrollable_set(entry, EINA_TRUE); elm_entry_line_wrap_set(entry, EINA_TRUE); elm_entry_editable_set(entry, EINA_FALSE); + elm_entry_line_wrap_set(entry, ELM_WRAP_MIXED); evas_object_show(entry); elm_object_focus_set(entry, EINA_TRUE); elm_object_part_content_set(layout, "elm.swallow.entry", entry); --
