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

Commit df2ad9f9 authored by govenliu's avatar govenliu Committed by Goven Liu
Browse files

[Wi-Fi] Fix "work profile apps" icon color wrong issue

context.getTheme() can not get the right value when user application context.
Sol: Change to use Activity context to fix.

Bug: 147677926
Test: Manually test and observe.
Change-Id: Ibc8998872bb2c5555622c26a51a5eb9ebf5bdc31
parent 5d86825c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ public class UidDetailProvider {
    }

    public UidDetailProvider(Context context) {
        mContext = context.getApplicationContext();
        mContext = context;
        mUidDetailCache = new SparseArray<UidDetail>();
    }