mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-14 04:34:16 +01:00
fix(SettingsWindow): ids for tabs
This commit is contained in:
parent
095e7c3037
commit
a245dd2cc9
1 changed files with 4 additions and 4 deletions
|
|
@ -188,25 +188,25 @@ namespace Dalamud.Interface.Internal.Windows
|
||||||
|
|
||||||
if (ImGui.BeginTabBar("SetTabBar"))
|
if (ImGui.BeginTabBar("SetTabBar"))
|
||||||
{
|
{
|
||||||
if (ImGui.BeginTabItem(Loc.Localize("DalamudSettingsGeneral", "General")))
|
if (ImGui.BeginTabItem(Loc.Localize("DalamudSettingsGeneral", "General") + "###settingsTabGeneral"))
|
||||||
{
|
{
|
||||||
this.DrawGeneralTab();
|
this.DrawGeneralTab();
|
||||||
ImGui.EndTabItem();
|
ImGui.EndTabItem();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ImGui.BeginTabItem(Loc.Localize("DalamudSettingsVisual", "Look & Feel")))
|
if (ImGui.BeginTabItem(Loc.Localize("DalamudSettingsVisual", "Look & Feel") + "###settingsTabVisual"))
|
||||||
{
|
{
|
||||||
this.DrawLookAndFeelTab();
|
this.DrawLookAndFeelTab();
|
||||||
ImGui.EndTabItem();
|
ImGui.EndTabItem();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ImGui.BeginTabItem(Loc.Localize("DalamudSettingsServerInfoBar", "Server Info Bar")))
|
if (ImGui.BeginTabItem(Loc.Localize("DalamudSettingsServerInfoBar", "Server Info Bar") + "###settingsTabInfoBar"))
|
||||||
{
|
{
|
||||||
this.DrawServerInfoBarTab();
|
this.DrawServerInfoBarTab();
|
||||||
ImGui.EndTabItem();
|
ImGui.EndTabItem();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ImGui.BeginTabItem(Loc.Localize("DalamudSettingsExperimental", "Experimental")))
|
if (ImGui.BeginTabItem(Loc.Localize("DalamudSettingsExperimental", "Experimental") + "###settingsTabExperimental"))
|
||||||
{
|
{
|
||||||
this.DrawExperimentalTab();
|
this.DrawExperimentalTab();
|
||||||
ImGui.EndTabItem();
|
ImGui.EndTabItem();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue