Skip to content

Commit

Permalink
注释更改
Browse files Browse the repository at this point in the history
  • Loading branch information
voidhug committed Jul 4, 2016
1 parent 53d8d9b commit 2564460
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ public boolean onTouch(View v, MotionEvent event) {
}
if (direction == 1) {
if (mShow) {
toolbarAnim(1);//show
toolbarAnim(1);//hide
mShow = !mShow;
}
} else if (direction == 0) {
if (!mShow) {
toolbarAnim(0);//hide
toolbarAnim(0);//show
mShow = !mShow;
}
}
Expand Down

0 comments on commit 2564460

Please sign in to comment.