* Fix e_util_dialog_internal() icon
authorDavide Andreoli <dave@gurumeditation.it>
Sat, 28 Mar 2009 22:16:12 +0000 (22:16 +0000)
committerDavide Andreoli <dave@gurumeditation.it>
Sat, 28 Mar 2009 22:16:12 +0000 (22:16 +0000)
 * Scale better the efm progress

SVN revision: 39784

data/themes/default.edc
src/bin/e_utils.c

index 1531b26..f11c65a 100644 (file)
@@ -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
index 27a97cb..94dc0e1 100644 (file)
@@ -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);