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

Commit 10a98dc6 authored by Charles Chen's avatar Charles Chen Committed by Android (Google) Code Review
Browse files

Merge "Fix violation in DecorContext"

parents a61c60e9 1779ab1e
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -137,4 +137,13 @@ public class DecorContext extends ContextThemeWrapper {
        }
        return false;
    }

    @Override
    public boolean isConfigurationContext() {
        Context context = mContext.get();
        if (context != null) {
            return context.isConfigurationContext();
        }
        return false;
    }
}