We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The layout indicator text should be the same as the theme text color.
The layout indicator text is green'ish with antialiasing turned on when text is light (when themes with the black text are used everything is ok).
Make a font config file in ~/.config/fontconfig/fonts.conf with antialiasing turned on:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> <match target="font"> <edit name="antialias" mode="assign"> <bool>true</bool> </edit> <edit name="hinting" mode="assign"> <bool>true</bool> </edit> <edit name="hintstyle" mode="assign"> <const>hintslight</const> </edit> <edit name="rgba" mode="assign"> <const>rgb</const> </edit> <edit name="autohint" mode="assign"> <bool>false</bool> </edit> <edit name="lcdfilter" mode="assign"> <const>lcddefault</const> </edit> </match> </fontconfig>
and that's what I get:
1.24.1
libmatekbd v.1.24.1
Tested on Manjaro and Ubuntu MATE 20.10
Not distro-specific
It's not the first mention of the bug: #28 (comment)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected behaviour
The layout indicator text should be the same as the theme text color.
Actual behaviour
The layout indicator text is green'ish with antialiasing turned on when text is light (when themes with the black text are used everything is ok).
Steps to reproduce the behaviour
Make a font config file in ~/.config/fontconfig/fonts.conf with antialiasing turned on:
and that's what I get:
MATE general version
1.24.1
Package version
libmatekbd v.1.24.1
Linux Distribution
Tested on Manjaro and Ubuntu MATE 20.10
Link to bugreport of your Distribution
Not distro-specific
P.S.
It's not the first mention of the bug: #28 (comment)
The text was updated successfully, but these errors were encountered: