Skip to content

Commit

Permalink
Fix condition for transition on OS level < 34
Browse files Browse the repository at this point in the history
  • Loading branch information
samiuelson committed Sep 19, 2024
1 parent 0d3209f commit 2079978
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class SupportRequestFormActivity : AppCompatActivity() {
}

override fun onPause() {
if (SystemVersionUtils.isAtMostT()) {
if (isPOS() && SystemVersionUtils.isAtMostT()) {
@Suppress("DEPRECATION")
overridePendingTransition(
R.anim.woopos_slide_in_left,
Expand Down

0 comments on commit 2079978

Please sign in to comment.