e/conf_apps: Fix resizing of "Startup Application" dialog
authorStafford Horne <shorne@gmail.com>
Sat, 7 Nov 2015 17:11:49 +0000 (12:11 -0500)
committerMike Blumenkrantz <zmike@osg.samsung.com>
Sat, 7 Nov 2015 17:11:49 +0000 (12:11 -0500)
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

index bab8cc0..962d927 100644 (file)
@@ -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);