summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authort895 <clombardo169@gmail.com>2023-11-12 19:54:31 +0100
committert895 <clombardo169@gmail.com>2023-11-12 19:54:31 +0100
commitc600bc86526bae9fe621cd3d8ab1a36d0fc7a931 (patch)
tree01811f8766fae64bac9184512487f475ddd5b087
parentMerge pull request #11980 from german77/moment (diff)
downloadyuzu-c600bc86526bae9fe621cd3d8ab1a36d0fc7a931.tar
yuzu-c600bc86526bae9fe621cd3d8ab1a36d0fc7a931.tar.gz
yuzu-c600bc86526bae9fe621cd3d8ab1a36d0fc7a931.tar.bz2
yuzu-c600bc86526bae9fe621cd3d8ab1a36d0fc7a931.tar.lz
yuzu-c600bc86526bae9fe621cd3d8ab1a36d0fc7a931.tar.xz
yuzu-c600bc86526bae9fe621cd3d8ab1a36d0fc7a931.tar.zst
yuzu-c600bc86526bae9fe621cd3d8ab1a36d0fc7a931.zip
-rw-r--r--src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/AboutFragment.kt8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/AboutFragment.kt b/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/AboutFragment.kt
index 2ff827c6b..a1620fbb7 100644
--- a/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/AboutFragment.kt
+++ b/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/AboutFragment.kt
@@ -114,10 +114,10 @@ class AboutFragment : Fragment() {
val leftInsets = barInsets.left + cutoutInsets.left
val rightInsets = barInsets.right + cutoutInsets.right
- val mlpAppBar = binding.appbarAbout.layoutParams as MarginLayoutParams
- mlpAppBar.leftMargin = leftInsets
- mlpAppBar.rightMargin = rightInsets
- binding.appbarAbout.layoutParams = mlpAppBar
+ val mlpToolbar = binding.toolbarAbout.layoutParams as MarginLayoutParams
+ mlpToolbar.leftMargin = leftInsets
+ mlpToolbar.rightMargin = rightInsets
+ binding.toolbarAbout.layoutParams = mlpToolbar
val mlpScrollAbout = binding.scrollAbout.layoutParams as MarginLayoutParams
mlpScrollAbout.leftMargin = leftInsets