billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=6952836a32270828b33c07cdaf1658949f3c2693

commit 6952836a32270828b33c07cdaf1658949f3c2693
Author: Boris Faure <bill...@gmail.com>
Date:   Fri Jan 4 23:34:08 2019 +0100

    termio: allow 1 line or 1 column windows. Closes T7532
---
 src/bin/termio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/termio.c b/src/bin/termio.c
index f749ece..3ccb6cf 100644
--- a/src/bin/termio.c
+++ b/src/bin/termio.c
@@ -5404,7 +5404,7 @@ _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) || (h <= 1))
+   if ((w <= 0) || (h <= 0))
      {
         w = 80;
         h = 24;

-- 


Reply via email to