chore: tweak warning time & text

This commit is contained in:
goat 2022-08-16 23:34:03 +02:00
parent f0a5dcf0e9
commit d53416d35b
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B

View file

@ -330,12 +330,12 @@ namespace Dalamud.Interface.Internal.Windows.PluginInstaller
throw new ArgumentOutOfRangeException();
}
if (DateTime.Now - this.timeLoaded > TimeSpan.FromMinutes(2) && isWaitingManager)
if (DateTime.Now - this.timeLoaded > TimeSpan.FromSeconds(90) && isWaitingManager)
{
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.DalamudRed);
ImGuiHelpers.CenteredText("This is embarrassing, but...");
ImGuiHelpers.CenteredText("one of your plugins may be blocking the installer.");
ImGuiHelpers.CenteredText("You should tell us about this.");
ImGuiHelpers.CenteredText("You should tell us about this, please keep this window open.");
ImGui.PopStyleColor();
}