diff --git a/data/themes/default.edc b/data/themes/default.edc index 1531b260c..f11c65ae4 100644 --- a/data/themes/default.edc +++ b/data/themes/default.edc @@ -11282,6 +11282,8 @@ collections { /* begin the collection of edje groups that are in this file */ description { state: "default" 0.0; image.normal: "bt_dis_shine.png"; image.border: 5 5 5 5; + rel1.to: "bg"; + rel2.to: "bg"; } } part { name: "icon"; @@ -11291,6 +11293,8 @@ collections { /* begin the collection of edje groups that are in this file */ min: 32 32; max: 32 32; align: 0.02 0.5; + rel1.to: "bg"; + rel2.to: "bg"; image.normal: "icon_efm_dnd_ask.png"; } description { state: "copy" 0.0; @@ -22879,6 +22883,7 @@ ICON("view-inherit","icon_dummy.png",64) // *** // EFMBUTTON("in //Standard Status Icons ICON("dialog-warning","icon_warning.png",128) // "enlightenment/warning" +ICON("dialog-error","icon_warning.png",128) // "enlightenment/error" ICON("unknown","icon_dummy.png",64) // *** // "enlightenment/unknown" //Standard Application Icons diff --git a/src/bin/e_utils.c b/src/bin/e_utils.c index 27a97cb8c..94dc0e1d8 100644 --- a/src/bin/e_utils.c +++ b/src/bin/e_utils.c @@ -638,7 +638,7 @@ e_util_dialog_internal(const char *title, const char *txt) if (!dia) return; e_dialog_title_set(dia, title); e_dialog_text_set(dia, txt); - e_dialog_icon_set(dia, "enlightenment/error", 64); + e_dialog_icon_set(dia, "dialog-error", 64); e_dialog_button_add(dia, _("OK"), NULL, NULL, NULL); e_dialog_button_focus_num(dia, 0); e_win_centered_set(dia->win, 1);