summaryrefslogtreecommitdiff
path: root/gtk2_ardour/audio_region_view.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-12-27 11:24:56 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2013-12-27 11:24:56 -0500
commit28759617c4eb0cbadbd41e6d7ea97d5de182966c (patch)
tree7d6253f56b2c190d92edf97eb0b66a4c9cd03675 /gtk2_ardour/audio_region_view.h
parent84f55440a3c6317dd2ab5d7e3d638016609e4d03 (diff)
Revert "switch fade in/out lines to ArdourCanvas::Curve rather than ArdourCanvas::PolyLine, though for no apparent benefit"
This reverts commit e169f5c17f5acdefc53b5c1373b64113cdd64ac8.
Diffstat (limited to 'gtk2_ardour/audio_region_view.h')
-rw-r--r--gtk2_ardour/audio_region_view.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk2_ardour/audio_region_view.h b/gtk2_ardour/audio_region_view.h
index 01f062d93d..bb5cbf29c4 100644
--- a/gtk2_ardour/audio_region_view.h
+++ b/gtk2_ardour/audio_region_view.h
@@ -151,18 +151,18 @@ class AudioRegionView : public RegionView
std::list<std::pair<framepos_t, ArdourCanvas::Line*> > feature_lines;
ArdourCanvas::Polygon* sync_mark; ///< polgyon for sync position
- ArdourCanvas::Curve* fade_in_shape;
- ArdourCanvas::Curve* fade_out_shape;
+ ArdourCanvas::PolyLine* fade_in_shape;
+ ArdourCanvas::PolyLine* fade_out_shape;
ArdourCanvas::Rectangle* fade_in_handle; ///< fade in handle, or 0
ArdourCanvas::Rectangle* fade_out_handle; ///< fade out handle, or 0
- ArdourCanvas::Curve *start_xfade_in;
- ArdourCanvas::Curve *start_xfade_out;
+ ArdourCanvas::PolyLine *start_xfade_in;
+ ArdourCanvas::PolyLine *start_xfade_out;
ArdourCanvas::Rectangle* start_xfade_rect;
bool _start_xfade_visible;
- ArdourCanvas::Curve *end_xfade_in;
- ArdourCanvas::Curve *end_xfade_out;
+ ArdourCanvas::PolyLine *end_xfade_in;
+ ArdourCanvas::PolyLine *end_xfade_out;
ArdourCanvas::Rectangle* end_xfade_rect;
bool _end_xfade_visible;