pianoroll automation height is now 1/3 of the available, not 1/2

This commit is contained in:
Paul Davis
2025-11-19 10:11:57 -07:00
parent 54d3bf9071
commit 8cb3f79e0f

View File

@@ -150,7 +150,7 @@ PianorollMidiView::set_height (double h)
note_area_height = h;
automation_height = 0.;
} else {
note_area_height = ceil (h / 2.);
note_area_height = ceil (2 * h / 3.);
automation_height = ceil (h - note_area_height);
}