use the extended navigation bar height check at the video fragment too
This commit is contained in:
parent
7518d33574
commit
b75c58fa0c
1 changed files with 1 additions and 1 deletions
|
@ -457,7 +457,7 @@ class VideoFragment : ViewPagerFragment(), TextureView.SurfaceTextureListener, S
|
||||||
|
|
||||||
private fun initTimeHolder() {
|
private fun initTimeHolder() {
|
||||||
var right = 0
|
var right = 0
|
||||||
var bottom = context!!.navigationBarHeight
|
var bottom = if (context!!.navigationBarBottom) context!!.navigationBarHeight else 0
|
||||||
if (mConfig.bottomActions) {
|
if (mConfig.bottomActions) {
|
||||||
bottom += resources.getDimension(R.dimen.bottom_actions_height).toInt()
|
bottom += resources.getDimension(R.dimen.bottom_actions_height).toInt()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue