summaryrefslogtreecommitdiff
path: root/gtk2_ardour/region_view.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-08-25 21:53:21 +0000
committerCarl Hetherington <carl@carlh.net>2009-08-25 21:53:21 +0000
commit33328b868dd29bfe80c8b4acc664358f8530bcd5 (patch)
tree963fa6660d11a645db51543e6e4ad3b9ae906502 /gtk2_ardour/region_view.cc
parentbc18abeba90c22e103824ba59585d3609514e67f (diff)
Make fade edits and trim possible on stacked regions.
git-svn-id: svn://localhost/ardour2/branches/3.0@5589 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/region_view.cc')
-rw-r--r--gtk2_ardour/region_view.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/gtk2_ardour/region_view.cc b/gtk2_ardour/region_view.cc
index 7fa453faf7..e79a7134af 100644
--- a/gtk2_ardour/region_view.cc
+++ b/gtk2_ardour/region_view.cc
@@ -459,7 +459,7 @@ RegionView::region_sync_changed ()
/* points set below */
- sync_mark = new ArdourCanvas::Polygon (*group);
+ sync_mark = new ArdourCanvas::Polygon (*group);
sync_mark->property_fill_color_rgba() = fill_color;
sync_line = new ArdourCanvas::Line (*group);
@@ -647,4 +647,7 @@ RegionView::update_coverage_frames (LayerDisplay d)
/* finish off the last rectangle */
cr->property_x2() = trackview.editor().frame_to_pixel (end - position);
}
+
+ frame_handle_start->raise_to_top ();
+ frame_handle_end->raise_to_top ();
}