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

Commit fac95c24 authored by Charles Chen's avatar Charles Chen Committed by Automerger Merge Worker
Browse files

Merge "Fix violation in DecorContext" into tm-qpr-dev am: 4cce97fd

parents bb90ea3b 4cce97fd
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;
    }
}