Skip to content

Commit

Permalink
Merge pull request #232 from Automattic/fix/long-podcast-website
Browse files Browse the repository at this point in the history
Fix long podcast website links overflowing
  • Loading branch information
ashiagr authored Aug 10, 2022
2 parents d028ce3 + 7342e52 commit bcb07ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
([#206](https://github.com/Automattic/pocket-casts-android/issues/206)).
* Fix embedded artwork not showing on player screen.
([#16](https://github.com/Automattic/pocket-casts-android/issues/16)).

* Fix long podcast website links overflowing.
([#230](https://github.com/Automattic/pocket-casts-android/issues/230)).

### 7.20.3

* Bug Fixes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginEnd="24dp"
android:ellipsize="end"
android:gravity="center_vertical"
android:includeFontPadding="false"
Expand All @@ -144,6 +145,7 @@
app:showIfPresent="@{podcast.shortUrl}"
app:layout_constraintBottom_toBottomOf="@+id/link_image"
app:layout_constraintStart_toEndOf="@+id/link_image"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@+id/link_image"
tools:text="@tools:sample/lorem" />

Expand Down

0 comments on commit bcb07ca

Please sign in to comment.