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 layout of debug tab.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Feb 6, 2023
1 parent de935ab commit 3d408e2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion RotationSolver/Windows/RotationConfigWindow_Debug.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,13 @@ private void DrawCDEX()

private void DrawIcon()
{
ImGui.Image(IconSet.GetTexture(10).ImGuiHandle, new Vector2(24, 24));
ImGui.Image(IconSet.GetTexture(61832).ImGuiHandle, new Vector2(24, 24));
var territory = Service.DataManager.GetExcelSheet<TerritoryType>()
.GetRow(Service.ClientState.TerritoryType);

ImGui.Text(territory.PlaceName?.Value?.Name.ToString() ?? "None");
ImGui.Image(IconSet.GetTexture((uint)territory.PlaceNameIcon).ImGuiHandle, new Vector2(24, 24));
ImGui.Image(IconSet.GetTexture((uint)territory.PlaceNameRegionIcon).ImGuiHandle, new Vector2(24, 24));
}

private static void DrawAction(ActionID id, string type)
Expand Down

0 comments on commit 3d408e2

Please sign in to comment.