Skip to content

Commit ae0cd46

Browse files
committed
UIElements showall is now true by default
1 parent 50a7675 commit ae0cd46

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Core/Features/UIElementFeatures/UIElementPanel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public UIElementPanel() : base(header: "UI")
167167
AddPadding(20);
168168

169169
AddHeader($"All UIElements");
170-
AddOption("Toggle All", false, elementState.SetShowAll, "Toggle all UI elements from mods");
170+
AddOption("Toggle All", true, elementState.SetShowAll, "Toggle all UI elements from mods");
171171
}
172172

173173
// Dynamic UI elements for each UIElement type

Core/Features/UIElementFeatures/UIElementState.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class UIElementState : UIState
1212
#region So many variables
1313

1414
// Flag to enable/disable UI debug drawing
15-
public bool showAll = false;
15+
public bool showAll = true;
1616
public bool DrawHitboxOfElement = false;
1717
public bool DrawSizeOfElement = false;
1818
public bool DrawNameOfElement = false;

0 commit comments

Comments
 (0)