summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-09-17 17:33:13 -0400
committerCharles Lombardo <clombardo169@gmail.com>2023-09-19 00:31:43 -0400
commit3b612cff288323ecfbbdfca38c5bde3bf4aeec47 (patch)
tree5d89d730421205ea6b6d3a7409da18243de7d0b9
parent32d65fc8de61407b53eb894dcf26375ea0c982ea (diff)
android: Fix showing input overlay in PiP
-rw-r--r--src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/EmulationFragment.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/EmulationFragment.kt b/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/EmulationFragment.kt
index 43d1d2364..dbc799dae 100644
--- a/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/EmulationFragment.kt
+++ b/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/EmulationFragment.kt
@@ -293,7 +293,7 @@ class EmulationFragment : Fragment(), SurfaceHolder.Callback {
}
if (EmulationMenuSettings.showOverlay) {
binding.surfaceInputOverlay.post {
- binding.surfaceInputOverlay.visibility = View.VISIBLE
+ binding.surfaceInputOverlay.visibility = View.INVISIBLE
}
}
} else {