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 broken fonts for map gps display #5337

Merged
merged 1 commit into from
Jul 8, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions addons/maptools/MapGpsUI.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ class RscTitles {
colorBackground[] = {0,0,0,0};
colorText[] = {0.247,0.251,0.157,1};
shadowColo[] = {0,0,0,0};
font = "EtelkaNarrowMediumPro";
// EtelkaNarrowMediumPro broke with 1.72 hotfix, can revert back to that font if fixed (following 3 uses of PuristaSemibold)
font = "PuristaSemibold";
shadow = 0;
sizeEx = 0.042;
};
Expand All @@ -55,7 +56,7 @@ class RscTitles {
colorBackground[] = {0,0,0,0};
colorText[] = {0.247,0.251,0.157,1};
shadowColo[] = {0,0,0,0};
font = "EtelkaNarrowMediumPro";
font = "PuristaSemibold";
shadow = 0;
sizeEx = 0.042;
};
Expand All @@ -70,7 +71,7 @@ class RscTitles {
colorBackground[] = {0,0,0,0};
colorText[] = {0.247,0.251,0.157,1};
shadowColo[] = {0,0,0,0};
font = "EtelkaNarrowMediumPro";
font = "PuristaSemibold";
shadow = 0;
sizeEx = 0.1;
};
Expand Down