From 0f2f21f2014bd767fe0afb9165ea3f36adbd3497 Mon Sep 17 00:00:00 2001 From: Stafford Horne Date: Sat, 7 Nov 2015 12:11:49 -0500 Subject: [PATCH] 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 --- src/modules/conf_applications/e_int_config_apps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/conf_applications/e_int_config_apps.c b/src/modules/conf_applications/e_int_config_apps.c index bab8cc0bd..962d92745 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);