1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Small fix to use of JUCEApplicationBase::quit() in linux event thread code

This commit is contained in:
jules 2019-11-29 14:22:57 +00:00
parent ecbab99917
commit 9b64141c93

View file

@ -253,7 +253,7 @@ bool MessageManager::dispatchNextMessageOnSystemQueue (bool returnIfNoPendingMes
for (;;)
{
if (LinuxErrorHandling::keyboardBreakOccurred)
JUCEApplicationBase::getInstance()->quit();
JUCEApplicationBase::quit();
if (auto* runLoop = InternalRunLoop::getInstanceWithoutCreating())
{