diff --git a/Terminal.Gui/ConsoleDrivers/EscSeqUtils/EscSeqReq.cs b/Terminal.Gui/ConsoleDrivers/EscSeqUtils/EscSeqReq.cs index 4dc98937b..c96c8f08b 100644 --- a/Terminal.Gui/ConsoleDrivers/EscSeqUtils/EscSeqReq.cs +++ b/Terminal.Gui/ConsoleDrivers/EscSeqUtils/EscSeqReq.cs @@ -1,5 +1,7 @@ #nullable enable +using System.Collections.Concurrent; + namespace Terminal.Gui; /// @@ -95,5 +97,5 @@ public class EscSeqRequests } /// Gets the list. - public Queue Statuses { get; } = new (); + public ConcurrentQueue Statuses { get; } = new (); }