One last modification, add proper icons to the up/down buttons.

SVN revision: 25773
This commit is contained in:
David Walter Seikel 2006-09-12 13:16:21 +00:00
parent 6b5d955256
commit 3ae4f33bde
1 changed files with 2 additions and 2 deletions

View File

@ -641,13 +641,13 @@ _basic_create_widgets(E_Config_Dialog *cfd, Evas *evas, E_Config_Dialog_Data *cf
99999, 99999 /* max */
);
mt = e_widget_button_add(evas, _("Move application up"), "enlightenment/e",
mt = e_widget_button_add(evas, _("Move application up"), "widget/up_arrow",
_cb_button_move_up, cfdata, NULL);
cfdata->gui.o_move_up_button = mt;
e_widget_framelist_object_append(of, mt);
e_widget_disabled_set(cfdata->gui.o_move_up_button, 1);
mt = e_widget_button_add(evas, _("Move application down"), "enlightenment/e",
mt = e_widget_button_add(evas, _("Move application down"), "widget/down_arrow",
_cb_button_move_down, cfdata, NULL);
cfdata->gui.o_move_down_button = mt;
e_widget_framelist_object_append(of, mt);