From 3ae4f33bde6a692567de400b6ce694cc6ce794ea Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Tue, 12 Sep 2006 13:16:21 +0000 Subject: [PATCH] One last modification, add proper icons to the up/down buttons. SVN revision: 25773 --- src/bin/e_int_config_apps.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_int_config_apps.c b/src/bin/e_int_config_apps.c index 71271e189..e805d8036 100644 --- a/src/bin/e_int_config_apps.c +++ b/src/bin/e_int_config_apps.c @@ -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);