mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 06:13:40 +01:00
feat: add some imgui stuff to data window
This commit is contained in:
parent
c4b5abd7b5
commit
60094fcbba
1 changed files with 8 additions and 2 deletions
|
|
@ -34,7 +34,7 @@ namespace Dalamud.Interface
|
|||
private string[] dataKinds = new[]
|
||||
{
|
||||
"ServerOpCode", "Address", "Actor Table", "Font Test", "Party List", "Plugin IPC", "Condition",
|
||||
"Gauge", "Command", "Addon", "Addon Inspector", "StartInfo", "Target", "Toast",
|
||||
"Gauge", "Command", "Addon", "Addon Inspector", "StartInfo", "Target", "Toast", "ImGui"
|
||||
};
|
||||
|
||||
private bool drawActors = false;
|
||||
|
|
@ -117,7 +117,7 @@ namespace Dalamud.Interface
|
|||
var copy = ImGui.Button("Copy all");
|
||||
ImGui.SameLine();
|
||||
|
||||
ImGui.Combo("Data kind", ref this.currentKind, dataKinds, dataKinds.Length);
|
||||
ImGui.Combo("Data kind", ref this.currentKind, this.dataKinds, this.dataKinds.Length);
|
||||
|
||||
ImGui.Checkbox("Resolve GameData", ref this.resolveGameData);
|
||||
|
||||
|
|
@ -339,6 +339,12 @@ namespace Dalamud.Interface
|
|||
this.dalamud.Framework.Gui.Toast.ShowError(this.inputTextToast);
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
// ImGui
|
||||
case 14:
|
||||
ImGui.Text("Monitor count: " + ImGui.GetPlatformIO().Monitors.Size);
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue