From 3c6fb1a0ce7867f2185e800d84c505aa40709a1e Mon Sep 17 00:00:00 2001 From: rachytski Date: Fri, 13 Apr 2012 22:50:42 +0400 Subject: [PATCH] commands chain isn't cancelled between execution of chains. --- base/commands_queue.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/base/commands_queue.cpp b/base/commands_queue.cpp index 19b759da05..9e99858b64 100644 --- a/base/commands_queue.cpp +++ b/base/commands_queue.cpp @@ -66,12 +66,7 @@ namespace core void CommandsQueue::Chain::operator()(CommandsQueue::Environment const & env) { for (list::const_iterator it = m_fns.begin(); it != m_fns.end(); ++it) - { (*it)(env); - - if (env.isCancelled()) - break; - } } CommandsQueue::Command::Command(bool isWaitable)