termio: reset size when size looks boggus.

Patch by netstar
This commit is contained in:
Boris Faure 2017-03-05 16:40:10 +01:00
parent f4813a229d
commit 566dc187d6
1 changed files with 5 additions and 2 deletions

View File

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