Make startup config dialog resizable.

SVN revision: 29569
This commit is contained in:
Christopher Michael 2007-04-17 09:23:21 +00:00
parent f08a34042a
commit 17a05b4cae
1 changed files with 3 additions and 2 deletions

View File

@ -336,13 +336,14 @@ _basic_create_widgets(E_Config_Dialog *cfd, Evas *evas, E_Config_Dialog_Data *cf
if (cfdata->splash)
f = cfdata->splash;
e_widget_preview_edje_set(o, f, "e/init/splash");
e_widget_list_object_append(of, o, 1, 0, 0.5);
e_widget_list_object_append(of, o, 1, 1, 0.5);
e_widget_table_object_append(ot, of, 1, 0, 1, 1, 0, 1, 0, 1);
e_widget_table_object_append(ot, of, 1, 0, 1, 1, 1, 1, 1, 1);
o = e_widget_check_add(evas, _("Show Splash Screen on Login"),
&(cfdata->show_splash));
e_widget_table_object_append(ot, o, 1, 3, 1, 1, 1, 0, 0, 0);
e_dialog_resizable_set(cfd->dia, 1);
return ot;
}