summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_time_axis.cc
diff options
context:
space:
mode:
authorDoug McLain <doug@nostar.net>2007-11-19 14:38:45 +0000
committerDoug McLain <doug@nostar.net>2007-11-19 14:38:45 +0000
commitf6999c701c91a4da1f9311b6f73d8775798895e2 (patch)
tree2b174b771beb17c8aaedbad639121304b4ad04d8 /gtk2_ardour/route_time_axis.cc
parented9bdd08945def40da97448af36301452b1b01df (diff)
more fixes for toggling on/off of the meters
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2695 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/route_time_axis.cc')
-rw-r--r--gtk2_ardour/route_time_axis.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/route_time_axis.cc b/gtk2_ardour/route_time_axis.cc
index dcdf41f2b7..c5cb1a3186 100644
--- a/gtk2_ardour/route_time_axis.cc
+++ b/gtk2_ardour/route_time_axis.cc
@@ -691,7 +691,7 @@ RouteTimeAxisView::set_height (TrackHeight h)
case Large:
case Larger:
case Normal:
- gpm.show();
+ show_meter();
show_name_entry ();
hide_name_label ();
@@ -712,7 +712,7 @@ RouteTimeAxisView::set_height (TrackHeight h)
break;
case Smaller:
- gpm.show();
+ show_meter();
show_name_entry ();
hide_name_label ();
@@ -733,7 +733,7 @@ RouteTimeAxisView::set_height (TrackHeight h)
break;
case Small:
- gpm.hide ();
+ hide_meter ();
hide_name_entry ();
show_name_label ();