diff --git a/CHANGELOG.md b/CHANGELOG.md index 50492117..a2fcf482 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ ### Fixed - Restoration of torrent adding parameters (download directory, etc) when adding torrent file - Saving of certificates and proxy settings when editing/adding server +- Torrents links text field filling the whole screen when long/multiple torrent links are entered ## [2.13.0] - 2025-12-29 ### Added diff --git a/app/src/main/kotlin/org/equeim/tremotesf/ui/addtorrent/AddTorrentLinkFragment.kt b/app/src/main/kotlin/org/equeim/tremotesf/ui/addtorrent/AddTorrentLinkFragment.kt index 8dcb6c54..c092639e 100644 --- a/app/src/main/kotlin/org/equeim/tremotesf/ui/addtorrent/AddTorrentLinkFragment.kt +++ b/app/src/main/kotlin/org/equeim/tremotesf/ui/addtorrent/AddTorrentLinkFragment.kt @@ -217,6 +217,7 @@ private fun AddTorrentLinkScreen( null }, minLines = 2, + maxLines = 4, modifier = Modifier .fillMaxWidth() .padding(horizontal = horizontalPadding)