From f4b7ae41a987a0077d077f01c8f0a619b5f02e7a Mon Sep 17 00:00:00 2001 From: Chandler Cox Date: Sat, 16 Sep 2023 14:51:47 -0500 Subject: [PATCH] Fix profiler rows with larger font sizes. --- Source/Editor/GUI/Row.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Editor/GUI/Row.cs b/Source/Editor/GUI/Row.cs index 8dad8b20d..b07d693e5 100644 --- a/Source/Editor/GUI/Row.cs +++ b/Source/Editor/GUI/Row.cs @@ -37,6 +37,9 @@ namespace FlaxEditor.GUI : base(0, 0, 100, height) { Depth = -1; + + if (Height < Style.Current.FontMedium.Height) + Height = Style.Current.FontMedium.Height + 4; } ///