billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=566dc187d67b3a16e49aa19c50b989419d3465c0
commit 566dc187d67b3a16e49aa19c50b989419d3465c0 Author: Boris Faure <[email protected]> Date: Sun Mar 5 16:40:10 2017 +0100 termio: reset size when size looks boggus. Patch by netstar --- src/bin/termio.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/bin/termio.c b/src/bin/termio.c index e82e9ae..ff14490 100644 --- a/src/bin/termio.c +++ b/src/bin/termio.c @@ -5088,8 +5088,11 @@ _smart_size(Evas_Object *obj, int w, int h, Eina_Bool force) Termio *sd = evas_object_smart_data_get(obj); EINA_SAFETY_ON_NULL_RETURN(sd); - if (w <= 1) w = 80; - if (h <= 1) h = 24; + if ((w <= 1) || (h <= 1)) + { + w = 80; + h = 24; + } if (!force) { --
