Fix DialogHost error

This commit is contained in:
farley128 2025-12-24 05:40:35 -05:00
parent b63dabdd6b
commit 2f96252866

View file

@ -38,6 +38,10 @@ public class DialogManager : IDisposable
} }
); );
// Small delay to allow DialogHost to fully reset its state
// before another dialog can be shown
await Task.Delay(100);
return dialog.DialogResult; return dialog.DialogResult;
} }
} }