HostedRedmine.com has moved to the Planio platform. All logins and passwords remained the same. All users will be able to login and use Redmine just as before. "Read more...":https://support.plan.io/news/187
Feature #760428
closedMinimal font configuration for SDL2 client
0%
Description
This patch allows setting the font size (but not style) of the city name and production on the main map.
It's a prerequisite to solving bug #760420. Until that bug is resolved, SDL2 suffers the same problem as other clients, that this option is often not respected.
Files
Related issues
Updated by Jacob Nevins almost 5 years ago
- Blocks Bug #760420: Tileset and client options fight over city name/production font size added
Updated by Jacob Nevins almost 5 years ago
- File m-sdl2-font-size-config.patch m-sdl2-font-size-config.patch added
- File 30-sdl2-font-size-config.patch 30-sdl2-font-size-config.patch added
- Status changed from In Progress to Resolved
Updated by Marko Lindqvist almost 5 years ago
int client_font_sizes[FONT_COUNT] = {
&city_names_font_size, / FONT_CITY_NAME /
&city_productions_font_size, / FONT_CITY_PROD /
&city_productions_font_size / FONT_REQTREE_TEXT; not used yet */
};
Does this mean that reqtree font size changes when city production font size changes? Doesn't sound right.
Updated by Jacob Nevins almost 5 years ago
No -- FONT_REQTREE_TEXT is just never used by the SDL client at all, I think. (This array indexed by enum client_font was already there, it's just moved.)
Updated by Jacob Nevins almost 5 years ago
- Status changed from Resolved to Closed