elm_interface_scrollable: add 1 space after if keyword

Reviewers: Hermet, akanad, SanghyeonLee

Reviewed By: Hermet, SanghyeonLee

Subscribers: SanghyeonLee, cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D6954
This commit is contained in:
Yeongjong Lee 2018-08-31 17:46:25 +09:00 committed by Hermet Park
parent 02d83ebcd4
commit 221ac4e51a
1 changed files with 13 additions and 13 deletions

View File

@ -2646,8 +2646,8 @@ _elm_scroll_momentum_calc(int dx, int dy, double dt, double *vx, double *vy, int
// scale factor must be below 1.0
if ( r >= 1 ) r = 0.99;
if(vx && sign_dx == sign_vx) vel_x = *vx;
if(vy && sign_dy == sign_vy) vel_y = *vy;
if (vx && (sign_dx == sign_vx)) vel_x = *vx;
if (vy && (sign_dy == sign_vy)) vel_y = *vy;
// calculate time based velecity (unit : px/second)
vel_x += dx / dt;