Skip to content

Commit

Permalink
Remove unused option
Browse files Browse the repository at this point in the history
  • Loading branch information
PassiveModding committed Aug 31, 2024
1 parent 568f647 commit 7678e02
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Meddle/Meddle.Plugin/UI/Layout/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ public enum ExportType
private bool drawOverlay = true;
private bool orderByDistance = true;
private bool traceToHovered = true;
private bool traceToExpanded = true;
private bool hideOffscreenCharacters = true;
private int maxItemCount = 100;

Expand All @@ -45,7 +44,6 @@ private void DrawOptions()
ImGui.Checkbox("Draw Overlay", ref drawOverlay);
ImGui.Checkbox("Order by Distance", ref orderByDistance);
ImGui.Checkbox("Trace to Hovered", ref traceToHovered);
ImGui.Checkbox("Trace to Expanded", ref traceToExpanded);
ImGui.Checkbox("Hide Offscreen Characters", ref hideOffscreenCharacters);
ImGui.DragInt("Max Item Count", ref maxItemCount, 1, 1, 50000);
if (ImGui.IsItemHovered())
Expand Down

0 comments on commit 7678e02

Please sign in to comment.