fix: null-check BuildFonts invocation

This commit is contained in:
goat 2021-08-24 21:28:06 +02:00
parent fd044f9353
commit 75eac29634
No known key found for this signature in database
GPG key ID: F18F057873895461

View file

@ -290,7 +290,7 @@ namespace Dalamud.Interface
private void OnBuildFonts() private void OnBuildFonts()
{ {
this.BuildFonts.Invoke(); this.BuildFonts?.Invoke();
} }
} }
} }