Merge pull request #2463 from Bnyro/master

Increase size of alternative related videos
This commit is contained in:
Bnyro 2022-12-21 11:31:31 +01:00 committed by GitHub
commit 99ecf9fbcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -97,7 +97,7 @@ class VideosAdapter(
// set a fixed width for better visuals
val params = root.layoutParams
when (forceMode) {
ForceMode.RELATED -> params.width = (180).toPixel().toInt()
ForceMode.RELATED -> params.width = (210).toPixel().toInt()
ForceMode.HOME -> params.width = (250).toPixel().toInt()
else -> {}
}