| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
The query array gained a third entry in dd30c82 but numQueries stayed at 2, so `size =` was never queried and every Alacritty user silently got the hardcoded 11.25 fallback.
| Back | FazBrowse Home | New Git URL |
Summary
detectAlacritty() passes numQueries = 2 to ffParsePropFileConfigValues(), but fontQueryToml has three entries. { "size =", &fontSize } sits at index 2 and is never queried, so fontSize stays empty and the hardcoded 11.25 fallback is used for every Alacritty user.
Introduced in dd30c82, which added { "family =", &fontFamily } to the middle of the array without bumping the count, and shipped in 2.67.0. It fails silently — the family is still correct and only the size is wrong, so there is no error to notice.
Testing
Fedora 43, Alacritty 0.17.0, ~/.config/alacritty/alacritty.toml:
Both sizes were checked against the actual rendered window, not just the reported string.
Related issue (required for new logos for new distros)
N/A — no existing report; found while investigating #2348.
Changes
Screenshots
No visual changes — the fix only corrects the reported value.
Checklist