summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-05-23 02:41:08 +0000
committerCarl Hetherington <carl@carlh.net>2010-05-23 02:41:08 +0000
commit5779060c7f6a0ee71e64cdf10ef19843298ab699 (patch)
treecfe736ae43e98766b7a9d4e0025c05d5ead782fc
parent1d0abbdcd98ca66aa1a689bd766a843ee625e099 (diff)
Possibly fix non-appearing MIDI controls (#3143)
git-svn-id: svn://localhost/ardour2/branches/3.0@7144 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--gtk2_ardour/midi_time_axis.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/midi_time_axis.cc b/gtk2_ardour/midi_time_axis.cc
index a33b50ef64..1eb5b0f5cb 100644
--- a/gtk2_ardour/midi_time_axis.cc
+++ b/gtk2_ardour/midi_time_axis.cc
@@ -282,7 +282,7 @@ MidiTimeAxisView::set_height (uint32_t h)
RouteTimeAxisView::set_height (h);
if (height >= MIDI_CONTROLS_BOX_MIN_HEIGHT) {
- _midi_controls_box.show();
+ _midi_controls_box.show_all ();
} else {
_midi_controls_box.hide();
}