Skip to content

Commit

Permalink
Dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuriy Budiyev committed Jan 11, 2018
1 parent 4c8f62d commit 7c9eb71
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -330,8 +330,9 @@ protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int widthSize = MeasureSpec.getSize(widthMeasureSpec);
int heightMode = MeasureSpec.getMode(heightMeasureSpec);
int heightSize = MeasureSpec.getSize(heightMeasureSpec);
int defaultWidth = Math.max(getSuggestedMinimumWidth(), mDefaultSize);
int defaultHeight = Math.max(getSuggestedMinimumHeight(), mDefaultSize);
int defaultSize = mDefaultSize;
int defaultWidth = Math.max(getSuggestedMinimumWidth(), defaultSize);
int defaultHeight = Math.max(getSuggestedMinimumHeight(), defaultSize);
int width;
int height;
switch (widthMode) {
Expand Down

0 comments on commit 7c9eb71

Please sign in to comment.