Skip to content

Commit

Permalink
Version 10.1.1
Browse files Browse the repository at this point in the history
Closes #57.
  • Loading branch information
TuringTechnologies committed Jul 20, 2016
1 parent 605f0c3 commit 6ccb4d3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "${supportLibVersion}"
buildToolsVersion '24.0.1'

defaultConfig {
applicationId "com.turingtechnologies.materialscrollbardemo"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ allprojects {
jcenter()
}

project.ext.supportLibVersion = '24.0.0'
project.ext.supportLibVersion = '24.1.0'
}
4 changes: 2 additions & 2 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'

def version = '10.1.0'
def version = '10.1.1'

install {
repositories.mavenInstaller {
Expand Down Expand Up @@ -41,7 +41,7 @@ ext {

android {
compileSdkVersion 24
buildToolsVersion "${supportLibVersion}"
buildToolsVersion '24.0.1'

defaultConfig {
minSdkVersion 11
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,11 @@ public T setBarThickness(int thickness){
if(indicator != null){
indicator.setSizeCustom(thickness);
}

layoutParams = (LayoutParams) getLayoutParams();
layoutParams.width = thickness;
setLayoutParams(layoutParams);

return (T)this;
}

Expand Down

0 comments on commit 6ccb4d3

Please sign in to comment.