Fix ImGui.MenuItem calls (again) (#2358)

This commit is contained in:
Haselnussbomber 2025-08-09 00:32:55 +02:00 committed by GitHub
parent 126a4d32c9
commit b3dcdb4539
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -846,9 +846,9 @@ internal class DalamudInterface : IInternalDisposableService
this.OpenBranchSwitcher(); this.OpenBranchSwitcher();
} }
ImGui.MenuItem(this.dalamud.StartInfo.GameVersion?.ToString() ?? "Unknown version", false); ImGui.MenuItem(this.dalamud.StartInfo.GameVersion?.ToString() ?? "Unknown version", false, false);
ImGui.MenuItem($"D: {Util.GetScmVersion()} CS: {Util.GetGitHashClientStructs()}[{FFXIVClientStructs.ThisAssembly.Git.Commits}]", false); ImGui.MenuItem($"D: {Util.GetScmVersion()} CS: {Util.GetGitHashClientStructs()}[{FFXIVClientStructs.ThisAssembly.Git.Commits}]", false, false);
ImGui.MenuItem($"CLR: {Environment.Version}", false); ImGui.MenuItem($"CLR: {Environment.Version}", false, false);
ImGui.EndMenu(); ImGui.EndMenu();
} }
@ -1011,8 +1011,8 @@ internal class DalamudInterface : IInternalDisposableService
} }
ImGui.Separator(); ImGui.Separator();
ImGui.MenuItem("API Level:" + PluginManager.DalamudApiLevel, false); ImGui.MenuItem("API Level:" + PluginManager.DalamudApiLevel, false, false);
ImGui.MenuItem("Loaded plugins:" + pluginManager.InstalledPlugins.Count(), false); ImGui.MenuItem("Loaded plugins:" + pluginManager.InstalledPlugins.Count(), false, false);
ImGui.EndMenu(); ImGui.EndMenu();
} }