Window title change to fit configuration panel, reverse resolution order.

SVN revision: 28059
This commit is contained in:
Miculcy Brian 2007-01-19 03:57:09 +00:00
parent 80ad19f6fc
commit 849960e05b
2 changed files with 3 additions and 2 deletions

View File

@ -53,7 +53,7 @@ e_int_config_desks(E_Container *con)
v->advanced.create_widgets = _advanced_create_widgets;
/* create config diaolg for NULL object/data */
cfd = e_config_dialog_new(con,
_("Desktop Settings"),
_("Virtual Desktops Settings"),
"E", "_config_desks_dialog",
"enlightenment/desktops", 0, v, NULL);
return cfd;

View File

@ -240,7 +240,7 @@ e_int_config_display(E_Container *con)
v->override_auto_apply = 1;
cfd = e_config_dialog_new(con,
_("Display Settings"),
_("Screen Resolution Settings"),
"E", "_config_display_dialog",
"enlightenment/screen_resolution", 0, v, NULL);
return cfd;
@ -451,6 +451,7 @@ _basic_create_widgets(E_Config_Dialog *cfd, Evas *evas, E_Config_Dialog_Data *cf
/* Sort the list */
cfdata->resolutions = evas_list_sort(cfdata->resolutions,
evas_list_count(cfdata->resolutions), _sort_resolutions);
cfdata->resolutions = evas_list_reverse(cfdata->resolutions);
evas_event_freeze(evas_object_evas_get(ol));
edje_freeze();