rimmed pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=71c0cbdec1ad2fdbcf8969010c1b96c9d78ed667
commit 71c0cbdec1ad2fdbcf8969010c1b96c9d78ed667 Author: Vyacheslav Reutskiy <[email protected]> Date: Mon May 30 18:32:30 2016 +0300 main_window: turnoff the eflete main cursor Fixes T3560 Change-Id: Ifb02292ede87badc2d0ac8d6e16d119ef00be8fa --- src/bin/ui/main_window.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bin/ui/main_window.c b/src/bin/ui/main_window.c index acfa6c6..3403e10 100644 --- a/src/bin/ui/main_window.c +++ b/src/bin/ui/main_window.c @@ -92,11 +92,14 @@ ui_main_window_add(void) evas_object_smart_callback_add(ap.win, "delete,request", _close_request, NULL); evas_object_smart_callback_add(ap.win, SIGNAL_SHORTCUT_QUIT, _close_request, NULL); + +#if 0 // turn off the eflete main cursor, while not used elementary combobox, and not fixed bug with double cursors if (!cursor_main_set(ap.win, CURSOR_ARROW)) { ERR("Main cursor not setted."); abort(); } +#endif /* if 0 */ elm_object_theme_set(ap.win, ap.theme); --
