billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=af257f2606d65645cb6166874829877e19a2c2c1
commit af257f2606d65645cb6166874829877e19a2c2c1 Author: Boris Faure <[email protected]> Date: Sun Jun 14 23:11:30 2020 +0200 options_behavior: remove ELM_WRAP_WORD as it makes labels disappear… --- src/bin/options_behavior.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/bin/options_behavior.c b/src/bin/options_behavior.c index dac8273..6c0e1c6 100644 --- a/src/bin/options_behavior.c +++ b/src/bin/options_behavior.c @@ -495,7 +495,6 @@ options_behavior(Evas_Object *opbox, Evas_Object *term) evas_object_size_hint_align_set(lbl, 0.0, 0.5); elm_box_pack_before(bx, lbl, o); elm_object_text_set(lbl, _("Audio Support for key presses <failure>DISABLED</failure>!")); - elm_label_line_wrap_set(lbl, ELM_WRAP_WORD); evas_object_show(lbl); } CX(_("Visual Bell"), disable_visual_bell, 1); @@ -592,7 +591,6 @@ options_behavior(Evas_Object *opbox, Evas_Object *term) evas_object_size_hint_align_set(o, 0.0, 0.5); ctx->backlock_label = o; _update_backlog_title(ctx); - elm_label_line_wrap_set(o, ELM_WRAP_WORD); elm_box_pack_end(bx, o); evas_object_show(o); @@ -627,7 +625,6 @@ options_behavior(Evas_Object *opbox, Evas_Object *term) evas_object_size_hint_weight_set(o, 0.0, 0.0); evas_object_size_hint_align_set(o, 0.0, 0.5); elm_object_text_set(o, _("Tab zoom/switch animation time:")); - elm_label_line_wrap_set(o, ELM_WRAP_WORD); tooltip = _("Set the time of the animation that<br>" "takes places on tab switches,<br>" "be them by key binding, mouse<br>" --
