diff options
| author | Alexander Winkowski <dereference23@outlook.com> | 2022-01-23 05:52:56 +0000 |
|---|---|---|
| committer | Alexander Winkowski <dereference23@outlook.com> | 2022-05-11 19:13:39 +0000 |
| commit | 7c410e79d591a3a41b1ec500ef26cdcf6dba42c4 (patch) | |
| tree | eaec3395c319bc8b179e42209cf7c04442a05a59 | |
| parent | a157e5dbb3d9904776969d1ba075d72f85091a81 (diff) | |
miatoll: Fix overlays location
Change-Id: I3afd7903dae56b440fe7f1ba977706ef1b58fe6d
| -rw-r--r-- | overlay/frameworks/base/core/res/res/values/config.xml | 14 | ||||
| -rw-r--r-- | overlay/frameworks/base/core/res/res/values/dimens.xml | 29 | ||||
| -rw-r--r-- | overlay/frameworks/base/packages/SystemUI/res/values/dimens.xml (renamed from overlay/packages/apps/SystemUI/res/values/dimens.xml) | 0 |
3 files changed, 30 insertions, 13 deletions
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml index 60e769e..88f17d9 100644 --- a/overlay/frameworks/base/core/res/res/values/config.xml +++ b/overlay/frameworks/base/core/res/res/values/config.xml @@ -12,19 +12,6 @@ limitations under the License. --> <resources> - <!-- Height of the status bar in portrait --> - <dimen name="status_bar_height_portrait">102px</dimen> - - <!-- Height of the status bar in landscape --> - <dimen name="status_bar_height_landscape">24dp</dimen> - - <!-- 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">93px</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">93px</dimen> <!-- The bounding path of the cutout region of the main built-in display. Must either be empty if there is no cutout region, or a string that is parsable by @@ -340,4 +327,5 @@ Must be in the range specified by minimum and maximum. Equivalent to 67/255 (default for this device) --> <item name="config_screenBrightnessSettingDefaultFloat" format="float" type="dimen">0.26274509804</item> + </resources> diff --git a/overlay/frameworks/base/core/res/res/values/dimens.xml b/overlay/frameworks/base/core/res/res/values/dimens.xml new file mode 100644 index 0000000..343ef27 --- /dev/null +++ b/overlay/frameworks/base/core/res/res/values/dimens.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 The LineageOS Project + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources> + <!-- Height of the status bar in portrait --> + <dimen name="status_bar_height_portrait">102px</dimen> + + <!-- Height of the status bar in landscape --> + <dimen name="status_bar_height_landscape">24dp</dimen> + + <!-- 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">93px</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">93px</dimen> + +</resources> diff --git a/overlay/packages/apps/SystemUI/res/values/dimens.xml b/overlay/frameworks/base/packages/SystemUI/res/values/dimens.xml index c59030c..c59030c 100644 --- a/overlay/packages/apps/SystemUI/res/values/dimens.xml +++ b/overlay/frameworks/base/packages/SystemUI/res/values/dimens.xml |
