Skip to content

Commit

Permalink
Fix for anitab-org#1426 NewGame Avatar setting bug
Browse files Browse the repository at this point in the history
  • Loading branch information
HaripriyaB committed May 4, 2020
1 parent 7887c83 commit ad30bd4
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,12 +163,11 @@ public void clothRightListener(View view) {
public boolean onArrowTouchListener(View view, MotionEvent motionEvent) {
if (motionEvent.getAction() == MotionEvent.ACTION_MOVE){
view.setAlpha(0f);
return true;
}
else {
view.setAlpha(1f);
return true;
}
return false;
}


Expand Down

0 comments on commit ad30bd4

Please sign in to comment.