Sublime Forum

Digits render problem in UI on Ubuntu 18.10

#1

I have a problem with freshly installed Sublime 3. There is no problem in the editor, only on the UI (status bar, sidebar etc)

Ubuntu 18.10
Sublime Text 3.2.1 Build 3207

image

0 Likes

#2

Can you check your machine and see what font you have mapped to “Sans”?

0 Likes

#3

I found problem in my fonts.conf. Thanks!

0 Likes

#4

If you don’t mind, could you explain what happened & how you fixed it for anyone who might come across this in the future with a similar issue?

0 Likes

#5

When I was setting up color emoji for Ubuntu, I added the file ~/.config/fontconfig/fonts.conf with these lines:

    <match>
        <test name="family">
            <string>sans-serif</string>
        </test>
        <edit name="family" mode="prepend" binding="strong">
            <string>Noto Color Emoji</string>
        </edit>
    </match>

The problem is with the attribute binding="strong". I removed this attribute, reloaded the font cache and the problem was gone.

2 Likes