summaryrefslogtreecommitdiff
path: root/gtk2_ardour/midi_region_view.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/midi_region_view.cc')
-rw-r--r--gtk2_ardour/midi_region_view.cc15
1 files changed, 8 insertions, 7 deletions
diff --git a/gtk2_ardour/midi_region_view.cc b/gtk2_ardour/midi_region_view.cc
index 63117beee2..3184bd104b 100644
--- a/gtk2_ardour/midi_region_view.cc
+++ b/gtk2_ardour/midi_region_view.cc
@@ -107,7 +107,7 @@ MidiRegionView::init (Gdk::Color& basic_color, bool wfd)
compute_colors (basic_color);
- set_y_position_and_height (0, trackview.current_height());
+ set_height (trackview.current_height());
region_muted ();
region_sync_changed ();
@@ -611,14 +611,15 @@ MidiRegionView::reset_width_dependent_items (double pixel_width)
}
void
-MidiRegionView::set_y_position_and_height (double y, double h)
+MidiRegionView::set_height (gdouble height)
{
- RegionView::set_y_position_and_height(y, h - 1);
+ RegionView::set_height(height);
+
+ // FIXME: ick
+ height -= 2;
+
+ _height = height;
- /* XXX why is this code here */
-
- _height = h;
-
if (_enable_display) {
_model->read_lock();