Skip to content
This repository has been archived by the owner on May 5, 2020. It is now read-only.

Fix for #1426 NewGame Avatar setting bug #1433

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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