Fix disabled MenuItems (#2318)

This commit is contained in:
Haselnussbomber 2025-08-04 20:13:34 +02:00 committed by GitHub
parent 0f8b65e95a
commit 0c63541864
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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