diff options
author | german77 <juangerman-13@hotmail.com> | 2023-06-13 08:13:42 +0200 |
---|---|---|
committer | german77 <juangerman-13@hotmail.com> | 2023-06-13 08:17:10 +0200 |
commit | 322ac1c20cfc1ad79abaa8032f747ce94108975c (patch) | |
tree | 32c74abfb690670cd4891a7679e2cb4d7ca62f50 | |
parent | Merge pull request #10743 from FearlessTobi/translations (diff) | |
download | yuzu-322ac1c20cfc1ad79abaa8032f747ce94108975c.tar yuzu-322ac1c20cfc1ad79abaa8032f747ce94108975c.tar.gz yuzu-322ac1c20cfc1ad79abaa8032f747ce94108975c.tar.bz2 yuzu-322ac1c20cfc1ad79abaa8032f747ce94108975c.tar.lz yuzu-322ac1c20cfc1ad79abaa8032f747ce94108975c.tar.xz yuzu-322ac1c20cfc1ad79abaa8032f747ce94108975c.tar.zst yuzu-322ac1c20cfc1ad79abaa8032f747ce94108975c.zip |
Diffstat (limited to '')
-rw-r--r-- | src/android/app/src/main/java/org/yuzu/yuzu_emu/views/FixedRatioSurfaceView.kt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/android/app/src/main/java/org/yuzu/yuzu_emu/views/FixedRatioSurfaceView.kt b/src/android/app/src/main/java/org/yuzu/yuzu_emu/views/FixedRatioSurfaceView.kt index c8ef8c1fd..d89a89983 100644 --- a/src/android/app/src/main/java/org/yuzu/yuzu_emu/views/FixedRatioSurfaceView.kt +++ b/src/android/app/src/main/java/org/yuzu/yuzu_emu/views/FixedRatioSurfaceView.kt @@ -38,9 +38,11 @@ class FixedRatioSurfaceView @JvmOverloads constructor( newWidth = width newHeight = (width / aspectRatio).roundToInt() } - setMeasuredDimension(newWidth, newHeight) + val left = (width - newWidth) / 2; + val top = (height - newHeight) / 2; + setLeftTopRightBottom(left, top, left + newWidth, top + newHeight) } else { - setMeasuredDimension(width, height) + setLeftTopRightBottom(0, 0, width, height) } } } |