summaryrefslogtreecommitdiff
path: root/gtk2_ardour/control_point.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-01-07 20:55:26 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2014-01-07 20:55:26 -0500
commitc9335ce0284ee9c446b44ab86178d94736e1cda3 (patch)
tree8dad072f9688fde56f4a300733d4ab4ff068152e /gtk2_ardour/control_point.cc
parentc22459d1b551be2f48d2e60f76e4efb3196de269 (diff)
fill control points
Diffstat (limited to 'gtk2_ardour/control_point.cc')
-rw-r--r--gtk2_ardour/control_point.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/control_point.cc b/gtk2_ardour/control_point.cc
index 5343ff5f24..9b588d1bab 100644
--- a/gtk2_ardour/control_point.cc
+++ b/gtk2_ardour/control_point.cc
@@ -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 */