bin/tools: improve tooltip messages.

This commit is contained in:
ChunEon Park 2014-12-15 09:17:02 +09:00
parent 9212c2eae4
commit 8a568b1b89
1 changed files with 2 additions and 2 deletions

View File

@ -150,7 +150,7 @@ tools_create(Evas_Object *parent, Evas_Object *enventor)
evas_object_size_hint_align_set(btn, 0.0, EVAS_HINT_FILL);
elm_box_pack_end(box, btn);
btn = tools_btn_create(box, "live_edit", "LiveEdit", "Live Edit Mode",
btn = tools_btn_create(box, "live_edit", "LiveEdit", "Live View Edit",
live_edit_cb, NULL);
evas_object_size_hint_weight_set(btn, 0, EVAS_HINT_EXPAND);
evas_object_size_hint_align_set(btn, 0.0, EVAS_HINT_FILL);
@ -160,7 +160,7 @@ tools_create(Evas_Object *parent, Evas_Object *enventor)
evas_object_show(sp);
elm_box_pack_end(box, sp);
btn = tools_btn_create(box, "lines", "Lines", "Editor Line Numbers",
btn = tools_btn_create(box, "lines", "Lines", "Line Numbers",
lines_cb, enventor);
evas_object_size_hint_weight_set(btn, 0, EVAS_HINT_EXPAND);
evas_object_size_hint_align_set(btn, 0.0, EVAS_HINT_FILL);