Skip to content

Commit

Permalink
Merge pull request #34 from MartinTopfstedt/develop
Browse files Browse the repository at this point in the history
fixed #33 missing directory separator
  • Loading branch information
Codinion authored Sep 30, 2022
2 parents c7a13aa + d43f893 commit 8c1b1bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FontAwesome6.Fonts.Net/FontAwesomeFonts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ static FontAwesomeFonts()
_fontFamilyNames.Add(EFontAwesomeStyle.Solid, "Font Awesome 6 Free Solid");
_fontFamilyNames.Add(EFontAwesomeStyle.Regular, "Font Awesome 6 Free Regular");

var path = Path.Combine(Path.GetTempPath(), FontAwesomeInfo.Version);
var path = Path.Combine(Path.GetTempPath(), "FontAwesomeFonts", FontAwesomeInfo.Version) + Path.DirectorySeparatorChar;
SaveFontFilesToDirectory(path);
LoadAllStyles(path);
#endif
Expand Down

0 comments on commit 8c1b1bc

Please sign in to comment.