From: Stafford Horne Date: Sat, 7 Nov 2015 17:11:49 +0000 (-0500) Subject: e/conf_apps: Fix resizing of "Startup Application" dialog X-Git-Tag: upstream/0.20.0~75 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0f2f21f2014bd767fe0afb9165ea3f36adbd3497;p=platform%2Fupstream%2Fenlightenment.git e/conf_apps: Fix resizing of "Startup Application" dialog Summary: Currently the config dialog in Apps > Startup Applications does not properly resized as one of the objects is not set to horizontal fill. Test Plan: 1. Resize "Apps > Startup Applications", it should resize the list with the window Reviewers: zmike Subscribers: cedric, seoz Differential Revision: https://phab.enlightenment.org/D3296 --- diff --git a/src/modules/conf_applications/e_int_config_apps.c b/src/modules/conf_applications/e_int_config_apps.c index bab8cc0bd5..962d927459 100644 --- a/src/modules/conf_applications/e_int_config_apps.c +++ b/src/modules/conf_applications/e_int_config_apps.c @@ -306,7 +306,7 @@ _basic_create(E_Config_Dialog *cfd, Evas *evas, E_Config_Dialog_Data *cfdata) cfdata->apps_xdg.o_desc = e_widget_textblock_add(evas); e_widget_size_min_set(cfdata->apps_xdg.o_desc, 100, (45 * e_scale)); - e_widget_table_object_append(ot, cfdata->apps_xdg.o_desc, 0, 1, 2, 1, 1, 1, 0, 0); + e_widget_table_object_append(ot, cfdata->apps_xdg.o_desc, 0, 1, 2, 1, 1, 1, 1, 0); cfdata->apps_xdg.o_add = e_widget_button_add(evas, _("Add"), "list-add", _cb_add, &cfdata->apps_xdg, NULL);