mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
convert automation line from Canvas::Curve to Canvas::PolyLine (note: this means there is no actual use of Canvas::Curve now)
This commit is contained in:
parent
a585816f3e
commit
2d389a23d5
2 changed files with 3 additions and 3 deletions
|
|
@ -38,7 +38,7 @@
|
|||
|
||||
#include "canvas/types.h"
|
||||
#include "canvas/group.h"
|
||||
#include "canvas/curve.h"
|
||||
#include "canvas/poly_line.h"
|
||||
|
||||
class AutomationLine;
|
||||
class ControlPoint;
|
||||
|
|
@ -174,7 +174,7 @@ class AutomationLine : public sigc::trackable, public PBD::StatefulDestructible
|
|||
|
||||
ArdourCanvas::Group& _parent_group;
|
||||
ArdourCanvas::Group* group;
|
||||
ArdourCanvas::Curve* line; /* line */
|
||||
ArdourCanvas::PolyLine* line; /* line */
|
||||
ArdourCanvas::Points line_points; /* coordinates for canvas line */
|
||||
std::vector<ControlPoint*> control_points; /* visible control points */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue