update the mirror mode icon

Summary: update mirror mode icon

Test Plan:
1. launch enventor
2. see the mirror mode icon

Reviewers: Hermet, Jaehyun_Cho, NikaWhite

Differential Revision: https://phab.enlightenment.org/D3830
This commit is contained in:
taehyub 2016-03-25 14:52:50 +09:00 committed by Hermet Park
parent 5bf8018118
commit 3b06354c67
4 changed files with 4 additions and 1 deletions

View File

@ -9,6 +9,7 @@ images {
image: "console.png" COMP;
image: "status.png" COMP;
image: "dummy.png" COMP;
image: "mirror.png" COMP;
image: "goto.png" COMP;
image: "save.png" COMP;
image: "redo.png" COMP;
@ -52,6 +53,7 @@ ICON_GROUP("lines", "lines.png")
ICON_GROUP("console", "console.png")
ICON_GROUP("status", "status.png")
ICON_GROUP("dummy", "dummy.png")
ICON_GROUP("mirror", "mirror.png")
ICON_GROUP("up", "slider_up.png")
ICON_GROUP("down", "slider_down.png")
ICON_GROUP("save", "save.png")

View File

@ -49,6 +49,7 @@ EXTRA_DIST = \
console.png \
status.png \
dummy.png \
mirror.png \
goto.png \
downlight_glow_left.png \
downlight_glow_right.png \

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -196,7 +196,7 @@ tools_init(Evas_Object *parent)
td->swallow_btn = btn;
//icon image is temporary, it should be changed to its own icon.
btn = tools_btn_create(box, "highlight", _("Mirror Mode (Ctrl + M)"),
btn = tools_btn_create(box, "mirror", _("Mirror Mode (Ctrl + M)"),
mirror_cb);
evas_object_size_hint_weight_set(btn, 0, EVAS_HINT_EXPAND);
evas_object_size_hint_align_set(btn, 0.0, EVAS_HINT_FILL);