chore: adjust minimum times for hitch detection a bit

This commit is contained in:
goat 2023-02-18 23:36:25 +01:00
parent d4f5b3f959
commit 7ffd196c2e
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B
3 changed files with 4 additions and 4 deletions

View file

@ -42,7 +42,7 @@ public sealed class UiBuilder : IDisposable
internal UiBuilder(string namespaceName)
{
this.stopwatch = new Stopwatch();
this.hitchDetector = new HitchDetector($"UiBuilder({namespaceName})", 15.0f);
this.hitchDetector = new HitchDetector($"UiBuilder({namespaceName})", 100);
this.namespaceName = namespaceName;
this.interfaceManager.Draw += this.OnDraw;