diff options
author | shorne <shorne@gmail.com> | 2015-11-05 16:03:26 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2015-11-05 16:03:26 +0900 |
commit | 5f3278eba867ff7743512e27568f2c9f58c630c2 (patch) | |
tree | d53937444a9c73aecb2d0e355d421478a3a77a57 /src/modules/winlist | |
parent | 151a5cc532dc0cc3d7a992ca020d0d64a15a5a94 (diff) | |
download | enlightenment-5f3278eba867ff7743512e27568f2c9f58c630c2.tar.gz |
e/win_config: allow content of some dialogs to resize with the window
Summary:
Currently the dialogs in Winows > Window List Menu and Window Display are
resizable the their content does not resize. This patch fixes that.
Test Plan: Open windows in window config dialog and ensure they can resize propertly
Reviewers: zmike
Subscribers: raster, cedric, seoz
Differential Revision: https://phab.enlightenment.org/D3275
Diffstat (limited to 'src/modules/winlist')
-rw-r--r-- | src/modules/winlist/e_int_config_winlist.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/winlist/e_int_config_winlist.c b/src/modules/winlist/e_int_config_winlist.c index 15bf16f345..4216768462 100644 --- a/src/modules/winlist/e_int_config_winlist.c +++ b/src/modules/winlist/e_int_config_winlist.c @@ -200,7 +200,7 @@ _basic_create(E_Config_Dialog *cfd EINA_UNUSED, Evas *evas, E_Config_Dialog_Data e_widget_list_object_append(ol, ob, 1, 0, 0.0); e_widget_check_widget_disable_on_unchecked_add(iconified, ob); e_widget_toolbook_page_append(otb, NULL, _("Display"), ol, - 0, 0, 1, 0, 0.5, 0.0); + 1, 0, 1, 0, 0.5, 0.0); ol = e_widget_list_add(evas, 0, 0); ob = e_widget_check_add(evas, _("Focus"), &(cfdata->focus)); @@ -228,7 +228,7 @@ _basic_create(E_Config_Dialog *cfd EINA_UNUSED, Evas *evas, E_Config_Dialog_Data e_widget_check_widget_disable_on_checked_add(ob, ck); e_widget_list_object_append(ol, ob, 1, 0, 0.0); e_widget_toolbook_page_append(otb, NULL, _("Selecting"), ol, - 0, 0, 1, 0, 0.5, 0.0); + 1, 0, 1, 0, 0.5, 0.0); ol = e_widget_list_add(evas, 0, 0); scroll_animate = ob = e_widget_check_add(evas, _("Scroll Animation"), @@ -242,7 +242,7 @@ _basic_create(E_Config_Dialog *cfd EINA_UNUSED, Evas *evas, E_Config_Dialog_Data e_widget_check_widget_disable_on_unchecked_add(scroll_animate, ob); e_widget_list_object_append(ol, ob, 1, 0, 0.0); e_widget_toolbook_page_append(otb, NULL, _("Animations"), ol, - 0, 0, 1, 0, 0.5, 0.0); + 1, 0, 1, 0, 0.5, 0.0); ol = e_widget_list_add(evas, 0, 0); ob = e_widget_label_add(evas, _("Minimum width")); @@ -272,7 +272,7 @@ _basic_create(E_Config_Dialog *cfd EINA_UNUSED, Evas *evas, E_Config_Dialog_Data e_widget_on_change_hook_set(ob, _height_limits_changed, cfdata); e_widget_list_object_append(ol, ob, 1, 0, 0.0); e_widget_toolbook_page_append(otb, NULL, _("Geometry"), ol, - 0, 0, 1, 0, 0.5, 0.0); + 1, 0, 1, 0, 0.5, 0.0); ol = e_widget_list_add(evas, 0, 0); ob = e_widget_label_add(evas, _("Horizontal alignment")); @@ -286,7 +286,7 @@ _basic_create(E_Config_Dialog *cfd EINA_UNUSED, Evas *evas, E_Config_Dialog_Data &(cfdata->align_y), NULL, 100); e_widget_list_object_append(ol, ob, 1, 0, 0.0); e_widget_toolbook_page_append(otb, NULL, _("Alignment"), ol, - 0, 0, 1, 0, 0.5, 0.0); + 1, 0, 1, 0, 0.5, 0.0); e_widget_toolbook_page_show(otb, 0); |