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) {