From 483151e06e30da9ba4f3f96f225a1920bf60cad7 Mon Sep 17 00:00:00 2001 From: Aptivi CEO Date: Sat, 12 Oct 2024 21:29:18 +0300 Subject: [PATCH] fix - reg - License infobox is not modal --- We've fixed a regression where we'd accidentally turned on the modality of the license infobox. --- Type: fix Breaking: False Doc Required: False Backport Required: False Part: 1/1 --- public/Nitrocid/Kernel/KernelEntry.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/Nitrocid/Kernel/KernelEntry.cs b/public/Nitrocid/Kernel/KernelEntry.cs index 878e87a8a..7d9694213 100644 --- a/public/Nitrocid/Kernel/KernelEntry.cs +++ b/public/Nitrocid/Kernel/KernelEntry.cs @@ -100,7 +100,7 @@ internal static void EntryPoint(string[]? args) // Show the license infobox if (Config.MainConfig.ShowLicenseInfoBox && Config.MainConfig.EnableSplash) { - InfoBoxModalColor.WriteInfoBoxModalColor( + InfoBoxNonModalColor.WriteInfoBoxColor( Translate.DoTranslation("License information"), WelcomeMessage.GetLicenseString(), KernelColorTools.GetColor(KernelColorType.License) );