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

Commit 048d9e21 authored by Adrian Roos's avatar Adrian Roos Committed by gitbuildkicker
Browse files

AOD: More VisD updates

- Change alpha for clock on AOD2
- Increase header bottom margin on ambient notification

Fixes: 37089014
Bug: 30876804
Test: visual inspection
Change-Id: If7ba1a51fdce3167129e8d8845bcb4a09b22a78d
(cherry picked from commit 0bcaa27c)
parent fa36606b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -33,6 +33,7 @@
            android:layout_gravity="top"
            android:layout_marginTop="@dimen/notification_content_margin_top"
            android:layout_marginBottom="@dimen/notification_action_list_height"
            android:paddingTop="10dp"
            android:clipToPadding="false"
            android:orientation="vertical">

+1 −1
Original line number Diff line number Diff line
@@ -301,7 +301,7 @@ public class KeyguardStatusView extends GridLayout {

    private void updateDozeVisibleViews() {
        for (View child : mVisibleInDoze) {
            child.setAlpha(mDark && mPulsing ? 0.5f : 1);
            child.setAlpha(mDark && mPulsing ? 0.8f : 1);
        }
    }
}