hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=08c9ddeecd742a5ef8ba3d43eb9bf13116329e3b
commit 08c9ddeecd742a5ef8ba3d43eb9bf13116329e3b Author: ChunEon Park <[email protected]> Date: Thu Jun 11 16:42:40 2015 +0900 don't clip the tooltip in tools. i guess, since the tooltip has been changed recently, it's behavior changed a little. because of this, tooltip in tools got clipped outside of the viewport. Anyhow it's fixed. @fix --- src/bin/tools.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/tools.c b/src/bin/tools.c index 75c90d2..ccbae53 100644 --- a/src/bin/tools.c +++ b/src/bin/tools.c @@ -230,6 +230,7 @@ tools_create(Evas_Object *parent, Evas_Object *enventor) btn = tools_btn_create(box, "console", "Console Box (Ctrl + Down)", console_cb, NULL); + elm_object_tooltip_orient_set(btn, ELM_TOOLTIP_ORIENT_BOTTOM_LEFT); evas_object_size_hint_weight_set(btn, 0, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(btn, 1.0, EVAS_HINT_FILL); elm_box_pack_end(box, btn); --
