Skip to content

Commit

Permalink
Updated version -> 1.3.0 -> Fixed bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
yikes committed May 22, 2023
1 parent 4ea03ef commit ecfb9f8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
1 change: 0 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion multi-sliding-up-panel/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ afterEvaluate {

groupId = "com.realgear"
artifactId = "multi-sliding-up-panel"
version = "1.2.9"
version = "1.3.0"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import android.os.Parcel;
import android.os.Parcelable;
import android.util.DisplayMetrics;
import android.util.Log;
import android.util.TypedValue;
import android.view.View;
import android.view.WindowManager;
Expand Down Expand Up @@ -112,6 +113,9 @@ public int getPanelTopByPanelState(int panelState) {
case MultiSlidingUpPanelLayout.EXPANDED:
return 0;

case MultiSlidingUpPanelLayout.HIDDEN:
return this.getPanelExpandedHeight();

default:
return this.getPanelExpandedHeightOffset();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import android.os.Parcel;
import android.os.Parcelable;
import android.util.AttributeSet;
import android.util.Log;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
Expand Down

0 comments on commit ecfb9f8

Please sign in to comment.