From 469b8ef7e46dc8dc918ab28c6c25a178f314c12a Mon Sep 17 00:00:00 2001 From: Jonathan Date: Mon, 1 Jan 2024 20:33:56 +0000 Subject: [PATCH] :wrench: 2.1.0 Hotfix - Corrected a very minor GUI error where the line separating categorized from un-categorized appeared below the first category title. --- .../Windows/Editor Window/Sub Windows/EditorTab.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Carter Games/Save Manager/Code/Editor/Custom Editors/Windows/Editor Window/Sub Windows/EditorTab.cs b/Carter Games/Save Manager/Code/Editor/Custom Editors/Windows/Editor Window/Sub Windows/EditorTab.cs index d277515..5d4f579 100644 --- a/Carter Games/Save Manager/Code/Editor/Custom Editors/Windows/Editor Window/Sub Windows/EditorTab.cs +++ b/Carter Games/Save Manager/Code/Editor/Custom Editors/Windows/Editor Window/Sub Windows/EditorTab.cs @@ -107,13 +107,13 @@ private void DrawSaveObjects() var saveObjectsInCategory = SaveCategoryAttributeHelper.GetObjectsInCategory(category); - EditorGUILayout.LabelField(category, EditorStyles.boldLabel); - if (didHaveUncategorized && !hasDrawnLine && saveObjectsInCategory.Count > 0) { UtilEditor.DrawHorizontalGUILine(); hasDrawnLine = true; } + + EditorGUILayout.LabelField(category, EditorStyles.boldLabel); foreach (var saveObject in saveObjectsInCategory) {