Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: changed the order of the panels.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Apr 18, 2023
1 parent 23b7604 commit 9df8eae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions RotationSolver/UI/RotationConfigWindow_Major.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ public override unsafe void Draw()
ImGui.EndTabItem();
}

if (ImGui.BeginTabItem(LocalizationManager.RightLang.ConfigWindow_EventItem))
if (ImGui.BeginTabItem(LocalizationManager.RightLang.ConfigWindow_ControlItem))
{
DrawEventTab();
DrawControlTab();
ImGui.EndTabItem();
}

Expand All @@ -44,9 +44,9 @@ public override unsafe void Draw()
ImGui.EndTabItem();
}

if (ImGui.BeginTabItem(LocalizationManager.RightLang.ConfigWindow_ControlItem))
if (ImGui.BeginTabItem(LocalizationManager.RightLang.ConfigWindow_EventItem))
{
DrawControlTab();
DrawEventTab();
ImGui.EndTabItem();
}

Expand Down

0 comments on commit 9df8eae

Please sign in to comment.