hide the gain slider when track area is too small

git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3197 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Ben Loftis 2008-03-30 02:40:10 +00:00
parent cce287654e
commit 0d266d57eb

View file

@ -739,6 +739,7 @@ RouteTimeAxisView::set_height (TrackHeight h)
show_name_entry ();
hide_name_label ();
gain_slider->show();
mute_button->show();
solo_button->show();
if (rec_enable_button)
@ -760,6 +761,7 @@ RouteTimeAxisView::set_height (TrackHeight h)
show_name_entry ();
hide_name_label ();
gain_slider->hide();
mute_button->show();
solo_button->show();
if (rec_enable_button)
@ -781,6 +783,7 @@ RouteTimeAxisView::set_height (TrackHeight h)
hide_name_entry ();
show_name_label ();
gain_slider->hide();
mute_button->hide();
solo_button->hide();
if (rec_enable_button)