From 566dc187d67b3a16e49aa19c50b989419d3465c0 Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Sun, 5 Mar 2017 16:40:10 +0100 Subject: [PATCH] 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 e82e9aed..ff14490a 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) {