mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
fill control points
This commit is contained in:
parent
c22459d1b5
commit
c9335ce028
1 changed files with 2 additions and 2 deletions
|
|
@ -44,7 +44,7 @@ ControlPoint::ControlPoint (AutomationLine& al)
|
|||
_size = 4.0;
|
||||
|
||||
_item = new ArdourCanvas::Rectangle (&_line.canvas_group());
|
||||
_item->set_fill (false);
|
||||
_item->set_fill (true);
|
||||
_item->set_fill_color (ARDOUR_UI::config()->get_canvasvar_ControlPointFill());
|
||||
_item->set_outline_color (ARDOUR_UI::config()->get_canvasvar_ControlPointOutline());
|
||||
_item->set_data ("control_point", this);
|
||||
|
|
@ -69,7 +69,7 @@ ControlPoint::ControlPoint (const ControlPoint& other, bool /*dummy_arg_to_force
|
|||
_size = other._size;
|
||||
|
||||
_item = new ArdourCanvas::Rectangle (&_line.canvas_group());
|
||||
_item->set_fill (false);
|
||||
_item->set_fill (true);
|
||||
_item->set_outline_color (ARDOUR_UI::config()->get_canvasvar_ControlPointOutline());
|
||||
|
||||
/* NOTE: no event handling in copied ControlPoints */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue