diff options
| author | Joshua Blanchard <joshua.lee.bbg@gmail.com> | 2021-02-26 08:01:15 -0500 |
|---|---|---|
| committer | Joshua Blanchard <joshua.lee.bbg@gmail.com> | 2021-04-05 22:45:51 -0400 |
| commit | 87ce753211ac037d7741e6d277d5ec2f1998ff8a (patch) | |
| tree | 5e2e60019e8bc551013a43e6481ff95b0961e36b | |
| parent | 289bcaacde72c3ce4c5538f5e59163dbcde34ba2 (diff) | |
evert: overlay: Consolidate rounded_corner_radius_* values
- Only set "rounded_corner_radius" being that the values for
_top/_bottom are identical.
Change-Id: Id8b9025138d184bdf728b019c47d68f3ef267ec7
| -rw-r--r-- | overlay/frameworks/base/core/res/res/values/dimens.xml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/overlay/frameworks/base/core/res/res/values/dimens.xml b/overlay/frameworks/base/core/res/res/values/dimens.xml index 76549e7..f0de56b 100644 --- a/overlay/frameworks/base/core/res/res/values/dimens.xml +++ b/overlay/frameworks/base/core/res/res/values/dimens.xml @@ -16,11 +16,6 @@ */ --> <resources> - <!-- Radius of the software rounded corners at the top of the display in its natural - orientation. If zero, the value of rounded_corner_radius is used. --> - <dimen name="rounded_corner_radius_top">26.0px</dimen> - - <!-- Radius of the software rounded corners at the bottom of the display in its natural - orientation. If zero, the value of rounded_corner_radius is used. --> - <dimen name="rounded_corner_radius_bottom">26.0px</dimen> + <!-- Default radius of the software rounded corners. --> + <dimen name="rounded_corner_radius">26.0px</dimen> </resources> |
