Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix file icons #3975

Merged
merged 2 commits into from
Oct 13, 2024
Merged

Fix file icons #3975

merged 2 commits into from
Oct 13, 2024

Commits on Oct 13, 2024

  1. Fix many file icons

    The string literal "\uf0868" does *not* create a single rune with the code point
    f0868, as was intended; instead, it creates two runes, one with the code point
    f086, followed by the character '8'.
    stefanhaller committed Oct 13, 2024
    Configuration menu
    Copy the full SHA
    f2fd435 View commit details
    Browse the repository at this point in the history
  2. Add test to ensure that file icons are one rune

    This should prevent errors like that from happening again.
    stefanhaller committed Oct 13, 2024
    Configuration menu
    Copy the full SHA
    f71274b View commit details
    Browse the repository at this point in the history