summaryrefslogtreecommitdiff
path: root/gtk2_ardour/audio_time_axis.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2007-10-01 17:18:04 +0000
committerCarl Hetherington <carl@carlh.net>2007-10-01 17:18:04 +0000
commited2f09edc58f230743d0748573c1f83ba8463889 (patch)
tree739190da88364a0b370307c955fa97ed0419bdeb /gtk2_ardour/audio_time_axis.cc
parent0adeb63484d9f1ba6519c8f63c5630590624f218 (diff)
Remove some apparently out-of-date code which was causing a segfault on show all automation.
git-svn-id: svn://localhost/ardour2/trunk@2504 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/audio_time_axis.cc')
-rw-r--r--gtk2_ardour/audio_time_axis.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/gtk2_ardour/audio_time_axis.cc b/gtk2_ardour/audio_time_axis.cc
index f406da955a..de99d25ae1 100644
--- a/gtk2_ardour/audio_time_axis.cc
+++ b/gtk2_ardour/audio_time_axis.cc
@@ -357,9 +357,6 @@ AudioTimeAxisView::show_all_automation ()
{
no_redraw = true;
- pan_automation_item->set_active (true);
- gain_automation_item->set_active (true);
-
RouteTimeAxisView::show_all_automation ();
no_redraw = false;
@@ -372,9 +369,6 @@ AudioTimeAxisView::show_existing_automation ()
{
no_redraw = true;
- pan_automation_item->set_active (true);
- gain_automation_item->set_active (true);
-
RouteTimeAxisView::show_existing_automation ();
no_redraw = false;
@@ -387,9 +381,6 @@ AudioTimeAxisView::hide_all_automation ()
{
no_redraw = true;
- pan_automation_item->set_active (false);
- gain_automation_item->set_active (false);
-
RouteTimeAxisView::hide_all_automation();
no_redraw = false;