diff --git a/src/lib/elementary/efl_ui_win.c b/src/lib/elementary/efl_ui_win.c index d93b40b8d4..71f15a31b1 100644 --- a/src/lib/elementary/efl_ui_win.c +++ b/src/lib/elementary/efl_ui_win.c @@ -2979,6 +2979,17 @@ _elm_win_resize_objects_eval(Evas_Object *obj) if (!wy) maxh = minh; else maxh = 32767; + if (sd->frame_obj) + { + int fx, fy, fw, fh; + + evas_output_framespace_get(sd->evas, &fx, &fy, &fw, &fh); + minw += fw; + minh += fh; + maxw -= fw; + maxh -= fh; + } + evas_object_size_hint_min_set(obj, minw, minh); evas_object_size_hint_max_set(obj, maxw, maxh); evas_object_geometry_get(obj, NULL, NULL, &w, &h);