From 151f573040a902fe7cdcef10efe889fb6ce17ced Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Fri, 18 Sep 2026 12:55:02 +0200 Subject: [PATCH] Add current .NET version to the main window tooltip --- Source/Editor/Modules/UIModule.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Editor/Modules/UIModule.cs b/Source/Editor/Modules/UIModule.cs index f94b87ec3..22f6e0233 100644 --- a/Source/Editor/Modules/UIModule.cs +++ b/Source/Editor/Modules/UIModule.cs @@ -835,6 +835,7 @@ namespace FlaxEditor.Modules tooltip.Append($" ({engineNickname})"); // Build info + tooltip.AppendLine(System.Runtime.InteropServices.RuntimeInformation.FrameworkDescription); #if USE_LARGE_WORLDS tooltip.AppendLine("Large Worlds Enabled"); #endif