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

Commit 83c9413b authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix issue with fontScale changes not taking effect" into oc-dev

parents 26e1d919 ec05bc0f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -56,12 +56,13 @@ public class TypedArray {
        // Reset the assets, which may have changed due to configuration changes
        // or further resource loading.
        attrs.mAssets = res.getAssets();
        attrs.mMetrics = res.getDisplayMetrics();
        attrs.resize(len);
        return attrs;
    }

    private final Resources mResources;
    private final DisplayMetrics mMetrics;
    private DisplayMetrics mMetrics;
    private AssetManager mAssets;

    private boolean mRecycled;