From 05ea863dc5d9849c40e0c95cfaca9f68713430e9 Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Thu, 14 Nov 2013 23:24:45 +0100 Subject: [PATCH] disable selection when resizing because I don't want to deal with that for the moment --- src/bin/termio.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/termio.c b/src/bin/termio.c index 406a0884..466c254e 100644 --- a/src/bin/termio.c +++ b/src/bin/termio.c @@ -1652,6 +1652,7 @@ _smart_size(Evas_Object *obj, int w, int h, Eina_Bool force) evas_object_size_hint_request_set(obj, sd->font.chw * sd->grid.w, sd->font.chh * sd->grid.h); + _sel_set(obj, EINA_FALSE); termpty_resize(sd->pty, w, h); _smart_calculate(obj); _smart_apply(obj);