diff options
| author | 2022-03-11 05:45:09 +0000 | |
|---|---|---|
| committer | 2022-03-11 05:45:09 +0000 | |
| commit | 8e53c0524320655a7f43d71fbe0438f3f2fd179d (patch) | |
| tree | bfbd8ef56bbd67053faf7156966aad759047531e | |
| parent | 37030fde02031e269065423752e11a8bc478a7a2 (diff) | |
| parent | edb03dc840ec62aed3f60224c621327c616ce784 (diff) | |
Merge "Fix issue with wrong style being used in landscape" into tm-dev
| -rw-r--r-- | libs/WindowManager/Shell/res/values-land/styles.xml | 2 | ||||
| -rw-r--r-- | packages/SystemUI/res/values-land/styles.xml | 11 |
2 files changed, 1 insertions, 12 deletions
diff --git a/libs/WindowManager/Shell/res/values-land/styles.xml b/libs/WindowManager/Shell/res/values-land/styles.xml index 0ed9368aa067..e89f65bef792 100644 --- a/libs/WindowManager/Shell/res/values-land/styles.xml +++ b/libs/WindowManager/Shell/res/values-land/styles.xml @@ -16,7 +16,7 @@ <resources xmlns:android="http://schemas.android.com/apk/res/android"> <style name="DockedDividerBackground"> - <item name="android:layout_width">10dp</item> + <item name="android:layout_width">@dimen/split_divider_bar_width</item> <item name="android:layout_height">match_parent</item> <item name="android:layout_gravity">center_horizontal</item> <item name="android:background">@color/split_divider_background</item> diff --git a/packages/SystemUI/res/values-land/styles.xml b/packages/SystemUI/res/values-land/styles.xml index f3d83645a8e0..89191984b9e8 100644 --- a/packages/SystemUI/res/values-land/styles.xml +++ b/packages/SystemUI/res/values-land/styles.xml @@ -18,15 +18,4 @@ <style name="BrightnessDialogContainer" parent="@style/BaseBrightnessDialogContainer"> <item name="android:layout_width">360dp</item> </style> - - <style name="DockedDividerBackground"> - <item name="android:layout_width">10dp</item> - <item name="android:layout_height">match_parent</item> - <item name="android:layout_gravity">center_horizontal</item> - </style> - - <style name="DockedDividerMinimizedShadow"> - <item name="android:layout_width">8dp</item> - <item name="android:layout_height">match_parent</item> - </style> </resources> |