summaryrefslogtreecommitdiff
path: root/gtk2_ardour/visual_time_axis.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2006-01-18 02:56:51 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2006-01-18 02:56:51 +0000
commitfe49c8de182d40528a27b84d5530698f438de51d (patch)
tree0b559f4b38e1a4de686620b7d10972fbf7ceae47 /gtk2_ardour/visual_time_axis.cc
parent67467c92e1c202b762837555aa0daecef1bd6dda (diff)
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
Diffstat (limited to 'gtk2_ardour/visual_time_axis.cc')
-rw-r--r--gtk2_ardour/visual_time_axis.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk2_ardour/visual_time_axis.cc b/gtk2_ardour/visual_time_axis.cc
index 3dbdf10898..f9408fae60 100644
--- a/gtk2_ardour/visual_time_axis.cc
+++ b/gtk2_ardour/visual_time_axis.cc
@@ -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;