Skip to content

Commit 339100c

Browse files
committed
fix spacing around active step
1 parent 6ba147e commit 339100c

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ And then the actual library dependency to your module's `build.gradle`:
1919

2020
```groovy
2121
dependencies {
22-
implementation 'com.github.transferwise:sequence-layout:1.0.6'
22+
implementation 'com.github.transferwise:sequence-layout:1.0.7'
2323
}
2424
```
2525

sequencelayout/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ android {
1111
defaultConfig {
1212
minSdkVersion 19
1313
targetSdkVersion 27
14-
versionCode 6
15-
versionName "1.0.6"
14+
versionCode 7
15+
versionName "1.0.7"
1616
archivesBaseName = "com.transferwise.sequencelayout-${versionName}"
1717
}
1818

sequencelayout/src/main/java/com/transferwise/sequencelayout/SequenceLayout.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public class SequenceLayout(context: Context?, attrs: AttributeSet?, defStyleAtt
115115
val item = adapter.getItem(i)
116116
val view = SequenceStep(context)
117117
adapter.bindView(view, item)
118-
stepsWrapper.addView(view)
118+
addView(view)
119119
}
120120
start()
121121
}

0 commit comments

Comments
 (0)