Skip to content

Commit

Permalink
fix spacing around active step
Browse files Browse the repository at this point in the history
  • Loading branch information
saschoar committed Jun 12, 2018
1 parent 6ba147e commit 339100c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ And then the actual library dependency to your module's `build.gradle`:

```groovy
dependencies {
implementation 'com.github.transferwise:sequence-layout:1.0.6'
implementation 'com.github.transferwise:sequence-layout:1.0.7'
}
```

Expand Down
4 changes: 2 additions & 2 deletions sequencelayout/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
defaultConfig {
minSdkVersion 19
targetSdkVersion 27
versionCode 6
versionName "1.0.6"
versionCode 7
versionName "1.0.7"
archivesBaseName = "com.transferwise.sequencelayout-${versionName}"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public class SequenceLayout(context: Context?, attrs: AttributeSet?, defStyleAtt
val item = adapter.getItem(i)
val view = SequenceStep(context)
adapter.bindView(view, item)
stepsWrapper.addView(view)
addView(view)
}
start()
}
Expand Down

0 comments on commit 339100c

Please sign in to comment.