Fix inverted test on command objects

Regression introduced in e847ce7c
This commit is contained in:
Magne Sjaastad 2020-12-14 12:34:25 +01:00
parent be91314ba6
commit 95e73a04df

View File

@ -1305,7 +1305,7 @@ void RiaApplication::executeCommandObjects()
auto currentCommandQueue = m_commandQueue;
for ( auto command : currentCommandQueue )
{
if ( command->isAsyncronous() )
if ( !command->isAsyncronous() )
{
command->redo();
m_commandQueue.remove( command );