summaryrefslogtreecommitdiff
path: root/gtk2_ardour/automation_line.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/automation_line.cc')
-rw-r--r--gtk2_ardour/automation_line.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk2_ardour/automation_line.cc b/gtk2_ardour/automation_line.cc
index bf9bd159e7..a15c113a67 100644
--- a/gtk2_ardour/automation_line.cc
+++ b/gtk2_ardour/automation_line.cc
@@ -229,7 +229,7 @@ AutomationLine::AutomationLine (const string & name, TimeAxisView& tv, ArdourCan
points_visible = false;
update_pending = false;
_vc_uses_gain_mapping = false;
- no_draw = false;
+ auto_is_boolean = false;
_visible = true;
terminal_points_can_slide = true;
_height = 0;
@@ -1242,10 +1242,6 @@ AutomationLine::reset ()
{
update_pending = false;
- if (no_draw) {
- return;
- }
-
alist.apply_to_points (*this, &AutomationLine::reset_callback);
}
@@ -1274,6 +1270,10 @@ AutomationLine::change_model_range (AutomationList::iterator start, AutomationLi
void
AutomationLine::show_all_control_points ()
{
+ if (auto_is_boolean) { //show the automation line but don't allow any control points
+ return;
+ }
+
points_visible = true;
for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {