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

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

Merge "Fix violation in DecorContext" into tm-qpr-dev

parents 3fdedfa2 d9bdee7f
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;
    }
}