Merge pull request #256 from goatcorp/imgui_update

This commit is contained in:
goaaats 2021-02-10 02:18:47 +01:00 committed by GitHub
commit 75742f79b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 14 additions and 5 deletions

View file

@ -22,6 +22,8 @@ namespace Dalamud.Interface
{
private readonly Dalamud dalamud;
private ulong frameCount = 0;
public DalamudInterface(Dalamud dalamud) {
this.dalamud = dalamud;
}
@ -243,6 +245,9 @@ namespace Dalamud.Interface
if (this.dalamud.Framework.Gui.GameUiHidden)
ImGui.BeginMenu("UI is hidden...", false);
ImGui.BeginMenu(this.frameCount.ToString(), false);
this.frameCount++;
ImGui.EndMainMenuBar();
}
}