From 2eda6d1865f37250a294bc151661434a4fc9765f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 21 Feb 2022 16:13:30 -0700 Subject: [PATCH] initialize sync mark/line in Region copied from another region --- gtk2_ardour/region_view.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk2_ardour/region_view.cc b/gtk2_ardour/region_view.cc index 55dc09c17b..ae5fabcc16 100644 --- a/gtk2_ardour/region_view.cc +++ b/gtk2_ardour/region_view.cc @@ -130,6 +130,8 @@ RegionView::RegionView (const RegionView& other) RegionView::RegionView (const RegionView& other, boost::shared_ptr other_region) : sigc::trackable(other) , TimeAxisViewItem (other) + , sync_mark (0) + , sync_line (0) , _silence_text (0) , _xrun_markers_visible (false) , _cue_markers_visible (false)