minor style edits

This commit is contained in:
tibbi 2017-04-12 19:32:31 +02:00
parent 47a10afbb7
commit 37c40b8de7

View file

@ -91,12 +91,11 @@ class VideoFragment : ViewPagerFragment(), SurfaceHolder.Callback, SeekBar.OnSee
super.setMenuVisibility(menuVisible) super.setMenuVisibility(menuVisible)
mIsFragmentVisible = menuVisible mIsFragmentVisible = menuVisible
if (menuVisible) { if (menuVisible) {
if (context != null && context.config.autoplayVideos) { if (context?.config?.autoplayVideos == true) {
playVideo() playVideo()
} }
} else { } else if (mIsPlaying) {
if (mIsPlaying) pauseVideo()
pauseVideo()
} }
} }
@ -241,7 +240,7 @@ class VideoFragment : ViewPagerFragment(), SurfaceHolder.Callback, SeekBar.OnSee
override fun onDestroy() { override fun onDestroy() {
super.onDestroy() super.onDestroy()
if (activity != null && !activity.isChangingConfigurations) { if (activity?.isChangingConfigurations == false) {
cleanup() cleanup()
} }
} }