Previously, a "maximize" of an efl client would not actually resize to
the provided size as it would account for framespace width & height.
This fixes that so now "maximize" is Actually maximized.
Signed-off-by: Chris Michael <cp.michael@samsung.com>
if ((ee->x != ev->x) || (ee->y != ev->y))
{
- ee->req.x = ee->x;
- ee->req.y = ee->y;
+ ee->req.x = ev->x;
+ ee->req.y = ev->y;
if (ee->func.fn_move) ee->func.fn_move(ee);
}
nw = ev->w;
nh = ev->h;
-
- if ((ee->prop.maximized) || (!ee->prop.fullscreen))
+ if ((!ee->prop.maximized) && (!ee->prop.fullscreen))
{
int fw = 0, fh = 0;