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. :)
This commit is contained in:
Stefan Schmidt 2014-03-20 15:50:51 +01:00
parent d0b61e4b88
commit 04a5a11a8f
1 changed files with 1 additions and 1 deletions

View File

@ -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);