1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2026-05-29 16:52:11 +00:00

Merge pull request #13037 from dustdfg/tablet_related_items

VideoDetailFragment: hide relatedItemsLayout in tablet mode after fullscreen
This commit is contained in:
Tobi
2026-02-21 09:03:11 -08:00
committed by GitHub
@@ -1905,7 +1905,11 @@ public final class VideoDetailFragment
}
if (binding.relatedItemsLayout != null) {
binding.relatedItemsLayout.setVisibility(fullscreen ? View.GONE : View.VISIBLE);
if (showRelatedItems) {
binding.relatedItemsLayout.setVisibility(fullscreen ? View.GONE : View.VISIBLE);
} else {
binding.relatedItemsLayout.setVisibility(View.GONE);
}
}
scrollToTop();