Skip to content

Commit

Permalink
Fix layout issue in recurrence fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
maltaisn committed Oct 15, 2021
1 parent 3798b40 commit 8ccaa2e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
### v2.1.6
- Fixed layout issue in 2.1.5.

### v2.1.5
- Add Arabic translation, thanks to @afmbsr.
- Fix untranslated string in French translation.
- Mostly a test release for new publishing script.
- There a major layout issue in this version! Please use 2.1.6.

### v2.1.4
- Updated kotlin to 1.4.21.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Library
libVersion=2.1.5
libVersion=2.1.6

# Dependencies
android.useAndroidX=true
Expand Down
5 changes: 2 additions & 3 deletions lib/src/main/res/layout/rp_fragment_picker.xml
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,6 @@
style="?attr/rpPickerInputLayoutStyle"
android:layout_width="56dp"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="@id/rp_picker_end_count_view"
app:layout_constraintStart_toEndOf="@id/rp_picker_end_count_prefix_label"
app:layout_constraintTop_toTopOf="@id/rp_picker_end_count_view"
android:layout_marginTop="8dp"
Expand Down Expand Up @@ -505,10 +504,10 @@
android:id="@+id/rp_picker_end_count_view"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="@id/rp_picker_end_count_input_layout"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintStart_toStartOf="@id/rp_picker_end_count_input_layout"
app:layout_constraintTop_toTopOf="@id/rp_picker_end_date_div"
/>

Expand Down

0 comments on commit 8ccaa2e

Please sign in to comment.