From 6686a021fb36ed735040d792265b584b197b2114 Mon Sep 17 00:00:00 2001 From: Nav Date: Tue, 21 Sep 2021 21:24:37 +0100 Subject: [PATCH] Disabled sharing of OpenGL contexts --- src/Insight/Insight.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Insight/Insight.hpp b/src/Insight/Insight.hpp index 0a7ca1a6..6ae28bea 100644 --- a/src/Insight/Insight.hpp +++ b/src/Insight/Insight.hpp @@ -66,7 +66,7 @@ namespace Bloom eventManager(eventManager), application( ( - QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts, true), + QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts, false), QApplication(this->qtApplicationArgc, this->qtApplicationArgv.data()) ) ) {};