From 04a5a11a8f9a208c9d2e7200736a3da3a9681b40 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Thu, 20 Mar 2014 15:50:51 +0100 Subject: [PATCH] e_pointer: Fix missing if for else if condition Fixing devilhorns commit and run commit. If we have a condition we want to check we need an else if not a simple else. Always compile before push. Especially the small and simple changes. :) --- src/bin/e_pointer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_pointer.c b/src/bin/e_pointer.c index 084e25674..e88591b4c 100644 --- a/src/bin/e_pointer.c +++ b/src/bin/e_pointer.c @@ -663,7 +663,7 @@ e_pointer_image_set(E_Pointer *p, E_Pixmap *cp, int w, int h, int hot_x, int hot evas_object_hide(p->pointer_image); evas_object_show(p->pointer_object); } - else ((p->e_cursor) && (p->canvas)) + else if ((p->e_cursor) && (p->canvas)) { evas_object_hide(p->pointer_object); evas_object_show(p->pointer_image);