From d2c9f058f81d3ef5639369d3ff026d0a9e0c60fe Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 24 Oct 2021 16:22:49 -0500 Subject: [PATCH] Add names to session threads --- app/streaming/session.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/app/streaming/session.cpp b/app/streaming/session.cpp index 46273446..2ebadd86 100644 --- a/app/streaming/session.cpp +++ b/app/streaming/session.cpp @@ -989,7 +989,10 @@ class AsyncConnectionStartThread : public QThread public: AsyncConnectionStartThread(Session* session) : QThread(nullptr), - m_Session(session) {} + m_Session(session) + { + setObjectName("Async Conn Start"); + } void run() override { @@ -1131,7 +1134,10 @@ class ExecThread : public QThread public: ExecThread(Session* session) : QThread(nullptr), - m_Session(session) {} + m_Session(session) + { + setObjectName("Session Exec"); + } void run() override {