Create the randr widget in _basic_create.

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

SVN revision: 84118
This commit is contained in:
Christopher Michael 2013-02-19 10:55:09 +00:00 committed by Christopher Michael
parent 4dfda15a8d
commit daa2b49ab9
1 changed files with 6 additions and 0 deletions

View File

@ -84,6 +84,12 @@ _basic_create(E_Config_Dialog *cfd, Evas *evas, E_Config_Dialog_Data *cfdata)
o = e_widget_list_add(evas, 0, 0);
/* try to create randr smart widget */
if ((cfdata->o_randr = e_smart_randr_add(evas)))
{
/* append randr widget to list object */
e_widget_list_object_append(o, cfdata->o_randr, 1, 1, 0.5);
}
return o;
}