partial Route::set_state() calls with a MementoCommand should not reset processor state (#9434)

This commit is contained in:
Paul Davis
2023-09-14 07:49:13 -06:00
parent eff61bde32
commit 73d559056e

View File

@@ -3117,6 +3117,11 @@ void
Route::set_processor_state (const XMLNode& node, int version)
{
const XMLNodeList &nlist = node.children();
if (nlist.empty()) {
return;
}
XMLNodeConstIterator niter;
ProcessorList new_order;
bool must_configure = false;