bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/apps/extra.git/commit/?id=4a3007e094a38957a3f6adbbd9fdbecfa1e42557
commit 4a3007e094a38957a3f6adbbd9fdbecfa1e42557 Author: Marcel Hollerbach <marcel-hollerb...@t-online.de> Date: Thu Jan 12 14:20:25 2017 +0100 extra: lets change the cursor here --- src/bin/extra_main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bin/extra_main.c b/src/bin/extra_main.c index 29427da..e0ae156 100644 --- a/src/bin/extra_main.c +++ b/src/bin/extra_main.c @@ -8,6 +8,7 @@ #include <Ecore_Getopt.h> #include <Elementary.h> +#include <Elementary_Cursor.h> #include "gettext.h" @@ -443,6 +444,8 @@ extra_win_setup(void) ui.theme_ui.install = install; ui.theme_ui.screenshot = elm_image_add(table); + elm_object_cursor_set(ui.theme_ui.screenshot, ELM_CURSOR_HAND2); + elm_object_cursor_style_set(ui.theme_ui.screenshot, ELM_CURSOR_HAND2); evas_object_event_callback_add(ui.theme_ui.screenshot, EVAS_CALLBACK_MOUSE_UP, _show_fullscreen, NULL); evas_object_size_hint_weight_set(ui.theme_ui.screenshot, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(ui.theme_ui.screenshot, EVAS_HINT_FILL, EVAS_HINT_FILL); --