From b67897a8caa1e999a6504995a589152ad566fe79 Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Tue, 26 Jul 2016 11:46:42 +0900 Subject: [PATCH] live_edit: add fixed width & height tooltip msg. --- src/bin/live_edit.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/bin/live_edit.c b/src/bin/live_edit.c index 99680b9..63e7770 100644 --- a/src/bin/live_edit.c +++ b/src/bin/live_edit.c @@ -2315,6 +2315,10 @@ live_edit_init(Evas_Object *parent) Evas_Object *fixed_w_check = elm_check_add(fixed_box); elm_object_focus_allow_set(fixed_w_check, EINA_FALSE); elm_object_text_set(fixed_w_check, "Fixed width"); + elm_object_tooltip_text_set(fixed_w_check, + "When you check Fixed width, width of a new
" + "part won't be resizable but it will stick a
" + "fixed size."); evas_object_show(fixed_w_check); elm_box_pack_end(fixed_box, fixed_w_check); @@ -2322,6 +2326,10 @@ live_edit_init(Evas_Object *parent) Evas_Object *fixed_h_check = elm_check_add(fixed_box); elm_object_focus_allow_set(fixed_h_check, EINA_FALSE); elm_object_text_set(fixed_h_check, "Fixed height"); + elm_object_tooltip_text_set(fixed_h_check, + "When you check Fixed height, height of a
" + "new part won't be resizable but it will
" + "stick a fixed size."); evas_object_show(fixed_h_check); elm_box_pack_end(fixed_box, fixed_h_check);