From: Jean-Philippe Andre Date: Tue, 19 Dec 2017 05:23:14 +0000 (+0900) Subject: scroll: Fix a warning (and probably the logic too) X-Git-Tag: submit/sandbox/upgrade/efl120/20180319.053334~579 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=478d5455c90dc425b0dfc0a6fa8cf26974809be2;p=platform%2Fupstream%2Fefl.git scroll: Fix a warning (and probably the logic too) --- diff --git a/src/lib/elementary/efl_ui_scroll_manager.c b/src/lib/elementary/efl_ui_scroll_manager.c index a25e3db..9065c82 100644 --- a/src/lib/elementary/efl_ui_scroll_manager.c +++ b/src/lib/elementary/efl_ui_scroll_manager.c @@ -1947,7 +1947,7 @@ _efl_ui_scroll_manager_mouse_move_event_cb(void *data, sd->down.history[0].y = ev->cur.canvas.y; sd->event_info = event_info; - if (!ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD) + if (!(ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)) evas_post_event_callback_push(e, _efl_ui_scroll_manager_post_event_move, sd); if (sd->down.dragged)