Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit edb03dc8 authored by Winson Chung's avatar Winson Chung
Browse files

Fix issue with wrong style being used in landscape

- Legacy style was overriding the Shell landscape style for the
  divider

Bug: 213379024
Test: Build sysui from studio and verify the divider background
      is correct
Change-Id: Ic47b411fad0469c86459cc01189a722dbad8d8c3
parent 5c511472
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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>
+0 −11
Original line number Diff line number Diff line
@@ -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>