Merge pull request #15704 from sethalves/bugz-566

case BUGZ-566: don't hang if somehow setting display plugin to the current one
This commit is contained in:
Shannon Romano 2019-06-07 11:22:49 -07:00 committed by GitHub
commit 1994e08689
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -170,9 +170,9 @@ public:
glFinish();
}
currentPlugin = newPlugin;
_newPluginQueue.pop();
_condition.notify_one();
}
_newPluginQueue.pop();
_condition.notify_one();
}
}