Fix the entry

This commit is contained in:
Jaime Thomas 2008-12-09 21:44:52 +00:00
parent 1e89162f2b
commit d464ad8aaf
2 changed files with 7 additions and 4 deletions

View File

@ -92,8 +92,8 @@ group {
program {
name: "focus1";
action: FOCUS_SET;
signal: "load";
source: "";
signal: "mouse,down,*";
source: "*";
target: "label";
}
@ -148,7 +148,7 @@ group {
min: 1 1;
rel1 {
relative: 0.0 0.0;
offset: 1 3;
offset: 0 3;
}
rel2 {

View File

@ -550,7 +550,10 @@ ecdb_cb_burn_image_page_buttons_clicked(void *data, Evas_Object *o,
}
else if (!strcmp(source, "ecdb/burn_image/file"))
{
evas_object_focus_set(o, 1);
// o is not the entry, it is the burn_image_page!
swallow = evas_object_name_find(ecore_evas_get(em->main_win_ee),
"ecdb/burn_image/file");
evas_object_focus_set(swallow, 1);
}
}