fix track controls height allocation to be font sensitive; fix core dump related to ownership of size menu; add nudge to keybindings; and more

git-svn-id: svn://localhost/trunk/ardour2@275 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2006-01-18 02:56:51 +00:00
parent 67467c92e1
commit fe49c8de18
12 changed files with 283 additions and 106 deletions

View file

@ -177,22 +177,22 @@ VisualTimeAxis::set_height(TrackHeight h)
case Larger:
case Normal:
{
name_label.hide() ;
name_entry.show() ;
hide_name_label ();
show_name_entry ();
other_button_hbox.show_all() ;
break;
}
case Smaller:
{
name_label.hide() ;
name_entry.show() ;
hide_name_label ();
show_name_entry ();
other_button_hbox.hide_all() ;
break;
}
case Small:
{
name_label.show() ;
name_entry.hide() ;
hide_name_entry ();
show_name_label ();
other_button_hbox.hide_all() ;
}
break;