Move and resize the monitor after packing to it's proper position.

Signed-off-by: Christopher Michael <cp.michael@samsung.com>

SVN revision: 84135
This commit is contained in:
Christopher Michael 2013-02-19 10:56:02 +00:00 committed by Christopher Michael
parent 6747badc99
commit 87a3d1da9b
1 changed files with 6 additions and 0 deletions

View File

@ -87,6 +87,12 @@ e_smart_randr_monitors_create(Evas_Object *obj)
/* pack this monitor into the layout */
e_layout_pack(sd->o_layout, mon);
/* move this monitor to proper position */
e_layout_child_move(mon, crtc->x, crtc->y);
/* resize this monitor to proper size */
e_layout_child_resize(mon, crtc->w, crtc->h);
}
}
}