You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Objective
The data for the default font is included twice with `include_bytes!`.
This is not a big problem as the data gets deduplicated at some point
during optimization, so this PR only saves 50 bytes~ instead of 20kb,
but we're still wasting time during compilation copying this file around
twice.
# Solution
Use the `DEFAULT_FONT_DATA` constant introduced in #14406 for setting
the default font instead of including the bytes a second time via
`load_internal_binary_asset`.
0 commit comments