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

Commit 4f939613 authored by Zemiao Zhu's avatar Zemiao Zhu Committed by Android (Google) Code Review
Browse files

Merge "Add two new overlayable font strings to differentiate header vs body...

Merge "Add two new overlayable font strings to differentiate header vs body font." into sc-mainline-prod
parents b2e34dde 4d90443c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -68,6 +68,8 @@
            <!-- START STRING CONFIG -->
            <item type="string" name="config_fontFamily"/>
            <item type="string" name="config_fontFamilyMedium"/>
            <item type="string" name="config_headerFontFamily"/>
            <item type="string" name="config_headerFontFamilyMedium"/>
            <item type="string" name="default_root_uri"/>
            <item type="string" name="preferred_root_package"/>
            <item type="string" name="trusted_quick_viewer_package"/>
+8 −2
Original line number Diff line number Diff line
@@ -16,9 +16,15 @@

<resources>

    <!-- Name of a font family. If empty, falls back to platform default -->
    <!-- Name of the body font family. If empty, falls back to platform default -->
    <string name="config_fontFamily" translatable="false">sans-serif</string>
    <!-- Name of the font family medium. -->
    <!-- Name of the body font family medium. -->
    <string name="config_fontFamilyMedium" translatable="false">sans-serif-medium</string>
    <!-- Name of the header font family. If empty, falls back to platform default -->
    <string name="config_headerFontFamily" translatable="false">@string/config_fontFamily</string>
    <!-- Name of the header font family medium. -->
    <string name="config_headerFontFamilyMedium" translatable="false">
        @string/config_fontFamilyMedium
    </string>

</resources>