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
This commit is contained in:
Stafford Horne 2015-11-07 12:11:49 -05:00 committed by Mike Blumenkrantz
parent 88726e8df3
commit 27a798c4f1
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,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);