Sequencer: Fix bug in fitting scale to viewport.

pull/119/merge
Jonathan Moore Liles 2020-10-16 17:45:00 -07:00
parent ee872467fb
commit 53ff9621ff
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ Canvas::_update_row_mapping ( void )
else
m.maxh = 128;
m.vp->h = min( m.vp->h, m.maxh );
m.vp->h = max( m.vp->h, m.maxh );
resize_grid();
}