[Rounded corners] Define top and bottom corners as equal to default

There seems to be a bug somewhere that is not reading the default corner
value and instead using the rounded_corner_radius_top /
rounded_corner_radius_bottom values even though they are not defined
here. Adding the overrides should fix the window animations for now.

Test: manual
Bug: 293863335
Change-Id: I53a33d22f9bdd9a2ebb6f9c21b693b2e45ea6c5a
(cherry picked from commit bb28bda53e)
This commit is contained in:
Evan Laird 2023-11-03 13:32:58 -04:00
parent faa059b74b
commit 6309d178ab

View file

@ -20,6 +20,8 @@
<resources> <resources>
<!-- Radius of the software rounded corners. --> <!-- Radius of the software rounded corners. -->
<dimen name="rounded_corner_radius">128px</dimen> <dimen name="rounded_corner_radius">128px</dimen>
<dimen name="rounded_corner_radius_top">128px</dimen>
<dimen name="rounded_corner_radius_bottom">128px</dimen>
<!-- Height of the status bar. <!-- Height of the status bar.
Do not read this dimen directly. Use {@link SystemBarUtils#getStatusBarHeight} instead. Do not read this dimen directly. Use {@link SystemBarUtils#getStatusBarHeight} instead.