13
0

temporal: fix copy-n-paste error in TempoCommand cosntructor

This commit is contained in:
Paul Davis 2022-04-08 11:56:43 -06:00
parent e466736e2d
commit 7fd8544e31

View File

@ -3728,7 +3728,7 @@ TempoCommand::TempoCommand (XMLNode const & node)
if ((*n)->children().empty()) {
throw failed_constructor();
}
_before = new XMLNode (*(*n)->children().front());
_after = new XMLNode (*(*n)->children().front());
}
}