fix scroll

This commit is contained in:
andyque 2014-07-02 11:48:28 +08:00
parent 77762cd8b9
commit 6e64714331
1 changed files with 3 additions and 3 deletions

View File

@ -852,7 +852,7 @@ bool ScrollView::checkCustomScrollDestination(float* touchOffsetX, float* touchO
bool ScrollView::scrollChildrenVertical(float touchOffsetX, float touchOffsetY) bool ScrollView::scrollChildrenVertical(float touchOffsetX, float touchOffsetY)
{ {
float realOffset = touchOffsetY; float realOffset = touchOffsetY;
bool scrollEnabled = false; bool scrollEnabled = true;
if (_bounceEnabled) if (_bounceEnabled)
{ {
float icBottomPos = _innerContainer->getBottomBoundary(); float icBottomPos = _innerContainer->getBottomBoundary();
@ -894,7 +894,7 @@ bool ScrollView::scrollChildrenVertical(float touchOffsetX, float touchOffsetY)
bool ScrollView::scrollChildrenHorizontal(float touchOffsetX, float touchOffestY) bool ScrollView::scrollChildrenHorizontal(float touchOffsetX, float touchOffestY)
{ {
bool scrollenabled = false; bool scrollenabled = true;
float realOffset = touchOffsetX; float realOffset = touchOffsetX;
if (_bounceEnabled) if (_bounceEnabled)
{ {
@ -936,7 +936,7 @@ bool ScrollView::scrollChildrenHorizontal(float touchOffsetX, float touchOffestY
bool ScrollView::scrollChildrenBoth(float touchOffsetX, float touchOffsetY) bool ScrollView::scrollChildrenBoth(float touchOffsetX, float touchOffsetY)
{ {
bool scrollenabled = false; bool scrollenabled = true;
float realOffsetX = touchOffsetX; float realOffsetX = touchOffsetX;
float realOffsetY = touchOffsetY; float realOffsetY = touchOffsetY;
if (_bounceEnabled) if (_bounceEnabled)