-RM-278-MR-Deadlock by closing OpenWalnut without opening widgets
If you open OpenWalnut an no widgets are opened and you then close it, it gets stuck. Reason for this is the waiting on a condition in the WGraphicsEngine: Line 219: m_startThreadingCondition.wait(); which gets fired in the first frame on any widget. But if there is no widget in the whole lifetime of OpenWalnut then the WGraphicsEngine does not get initialized correctly and therefore can not stop.
Possible solution: This can be solved by putting m_startThreadingCondition.notify(); in the WGraphicsEngine::notifyStop(); method.
(from redmine: created on 2013-04-15, closed on 2013-08-06)