Skip to content

Commit

Permalink
Fix broken fonts for map gps display (#5337)
Browse files Browse the repository at this point in the history
EtelkaNarrowMediumPro broke with 1.72 hotfix
  • Loading branch information
PabstMirror authored and jonpas committed Jul 10, 2017
1 parent 59add40 commit 6acd61a
Showing 1 changed file with 4 additions and 3 deletions.
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

0 comments on commit 6acd61a

Please sign in to comment.