mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 08:21:24 +02:00
Prevent deadlocks from Overlays update logic recursing into other Overlays calls
This commit is contained in:
parent
d572510770
commit
bb57504498
1 changed files with 1 additions and 1 deletions
|
@ -323,7 +323,7 @@ signals:
|
||||||
private:
|
private:
|
||||||
void cleanupOverlaysToDelete();
|
void cleanupOverlaysToDelete();
|
||||||
|
|
||||||
mutable QMutex _mutex;
|
mutable QMutex _mutex { QMutex::Recursive };
|
||||||
QMap<OverlayID, Overlay::Pointer> _overlaysHUD;
|
QMap<OverlayID, Overlay::Pointer> _overlaysHUD;
|
||||||
QMap<OverlayID, Overlay::Pointer> _overlaysWorld;
|
QMap<OverlayID, Overlay::Pointer> _overlaysWorld;
|
||||||
#if OVERLAY_PANELS
|
#if OVERLAY_PANELS
|
||||||
|
|
Loading…
Reference in a new issue