1
0
mirror of https://github.com/tuskyapp/Tusky synced 2025-02-08 07:18:39 +01:00

ktLint fix

This commit is contained in:
mcc 2023-12-10 18:13:46 -05:00
parent 90f35ed009
commit b9a593d6b0

View File

@ -158,8 +158,9 @@ class ViewMediaActivity : BaseActivity(), HasAndroidInjector, ViewImageFragment.
})
// Prevent this activity from dimming or sleeping the screen if it is playing video or audio
if (attachments!![binding.viewPager.currentItem].attachment.type != Attachment.Type.IMAGE)
if (attachments!![binding.viewPager.currentItem].attachment.type != Attachment.Type.IMAGE) {
window.addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON)
}
}
override fun onCreateOptionsMenu(menu: Menu): Boolean {