From 3628f08fbc91880ec0e818324fed2a8fadd640f2 Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Fri, 4 Oct 2013 18:10:03 -0700 Subject: [PATCH] Mixer: Fix bug with strip copy/paste due to groups. --- mixer/src/Mixer_Strip.C | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mixer/src/Mixer_Strip.C b/mixer/src/Mixer_Strip.C index 679e1f7..9c9ad11 100644 --- a/mixer/src/Mixer_Strip.C +++ b/mixer/src/Mixer_Strip.C @@ -187,7 +187,8 @@ Mixer_Strip::set ( Log_Entry &e ) { Group *t = (Group*)Loggable::find( i ); - assert( t ); + /* Because of strip copy/paste and import, we can't assure that the group will exist by ID*/ +// assert( t ); group( t ); }