mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-06 01:50:38 +00:00
Fix isRunning check - just wait for m_Thread to be NULL
This commit is contained in:
@@ -243,7 +243,7 @@ public:
|
||||
}
|
||||
|
||||
void start(QThread::Priority prio = QThread::InheritPriority) { m_Thread->start(prio); }
|
||||
bool isRunning() { return m_Thread && m_Thread->isRunning(); }
|
||||
bool isRunning() { return m_Thread; }
|
||||
};
|
||||
|
||||
// helper for doing a manual blocking invoke of a dialog
|
||||
|
||||
Reference in New Issue
Block a user