Skip to content

Commit

Permalink
fix: button names
Browse files Browse the repository at this point in the history
  • Loading branch information
Bluefissure committed Jan 2, 2024
1 parent 1140d4e commit be1f9a9
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/XIVLauncher.Core/Components/MainPage/LoginFrame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -145,42 +145,43 @@ public override void Draw()

if (ImGui.BeginPopupContextItem(POPUP_ID_LOGINACTION))
{
if (ImGui.MenuItem("关闭 Dalamud 启动"))
if (ImGui.MenuItem("启动但不加载 Dalamud"))
{
this.OnLogin?.Invoke(LoginAction.GameNoDalamud);
}

ImGui.Separator();

if (ImGui.MenuItem("停用自定义库插件启动"))
if (ImGui.MenuItem("启动时禁用自定义库插件"))
{
this.OnLogin?.Invoke(LoginAction.GameNoThirdparty);
}

ImGui.Separator();

if (ImGui.MenuItem("更新游戏,不启动"))
if (ImGui.MenuItem("更新游戏不启动"))
{
this.OnLogin?.Invoke(LoginAction.GameNoLaunch);
}

/*
ImGui.Separator();
if (ImGui.MenuItem("修复游戏"))
{
this.OnLogin?.Invoke(LoginAction.Repair);
}
*/

ImGui.Separator();

if (ImGui.MenuItem("强制扫码"))
if (ImGui.MenuItem("扫码登录"))
{
this.OnLogin?.Invoke(LoginAction.ForceQR);
}

ImGui.Separator();

if (ImGui.MenuItem("显示密码输入框"))
if (ImGui.MenuItem("显示/隐藏密码框"))
{
this.TogglePasswordInput();
}
Expand Down

0 comments on commit be1f9a9

Please sign in to comment.