From 3e95955a5cf482f8ef3ac8e309573d4c7f5afa8f Mon Sep 17 00:00:00 2001 From: Chidambar Zinnoury Date: Mon, 21 Apr 2014 09:15:11 +0200 Subject: [PATCH] Bugfix: e fileman: Typo on maximum height condition. --- src/modules/fileman/e_fwin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/fileman/e_fwin.c b/src/modules/fileman/e_fwin.c index 1da6ff58e..5fe5c1c82 100644 --- a/src/modules/fileman/e_fwin.c +++ b/src/modules/fileman/e_fwin.c @@ -656,7 +656,7 @@ _e_fwin_bg_mouse_down(E_Fwin *fwin, Evas_Object *obj __UNUSED__, void *event __U evas_object_geometry_get(fwin->cur_page->fm_obj, &cx, &cy, &cw, &ch); if (x + w > zx + zw) w = zx + zw - x; - if (y + x > zy + zh) + if (y + h > zy + zh) h = zy + zh - y; w = w + cx; h = h + cx;