From 9b465c8a9519a57eeedd8a9b56792a1bfd7c088e Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Fri, 30 Nov 2012 07:26:19 +0000 Subject: [PATCH] Add ECORE_X_CURSOR_EXCHANGE to e_pointer for a 'rotate' cursor. Signed-off-by: Christopher Michael SVN revision: 79867 --- src/bin/e_pointer.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/e_pointer.c b/src/bin/e_pointer.c index 660502331..5186f53ec 100644 --- a/src/bin/e_pointer.c +++ b/src/bin/e_pointer.c @@ -445,6 +445,8 @@ fallback: cursor = ecore_x_cursor_shape_get(ECORE_X_CURSOR_PLUS); else if (!strcmp(type, "hand")) cursor = ecore_x_cursor_shape_get(ECORE_X_CURSOR_HAND1); + else if (!strcmp(type, "rotate")) + cursor = ecore_x_cursor_shape_get(ECORE_X_CURSOR_EXCHANGE); else { printf("Unknown pointer type: %s\n", type);