* Fix e_util_dialog_internal() icon

* Scale better the efm progress



SVN revision: 39784
This commit is contained in:
Davide Andreoli 2009-03-28 22:16:12 +00:00
parent 2dde72e9f8
commit 7e1d04f5d0
2 changed files with 6 additions and 1 deletions

View 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

View 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);