ctxpopup - rename part name for consistency.

This commit is contained in:
ChunEon Park 2014-01-30 12:25:35 +09:00
parent 486a9b8f44
commit 9651c0dddd
2 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ group { name: "hotkeys";
}
}
group { name: "plus_img";
group { name: "plus";
parts {
part { name: "img";
type: IMAGE;
@ -29,7 +29,7 @@ group { name: "plus_img";
}
}
group { name: "minus_img";
group { name: "minus";
parts {
part { name: "img";
type: IMAGE;

View File

@ -145,7 +145,7 @@ ctxpopup_candidate_list_create(Evas_Object *parent, attr_value *attr,
//Minus Image
img = elm_image_add(btn);
elm_image_file_set(img, EDJE_PATH, "minus_img");
elm_image_file_set(img, EDJE_PATH, "minus");
evas_object_show(img);
elm_object_content_set(btn, img);
@ -159,7 +159,7 @@ ctxpopup_candidate_list_create(Evas_Object *parent, attr_value *attr,
//Plus Image
img = elm_image_add(btn);
elm_image_file_set(img, EDJE_PATH, "plus_img");
elm_image_file_set(img, EDJE_PATH, "plus");
evas_object_show(img);
elm_object_content_set(btn, img);