13
0

Allow track views to be more than 1000 pixels tall

People have 4K displays these days; having a single maximized track is
not unusual.
This commit is contained in:
Hector Martin 2021-09-04 14:48:00 +09:00 committed by Robin Gareus
parent 50b01732fd
commit a33261df3d
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -122,7 +122,7 @@ StreamView::set_height (double h)
{
/* limit the values to something sane-ish */
if (h < 10.0 || h > 1000.0) {
if (h < 10.0 || h > 2500.0) {
return -1;
}