Browse Source

Sequencer: Fix bug in fitting scale to viewport.

tags/non-daw-v1.3.0
Jonathan Moore Liles 4 years ago
parent
commit
53ff9621ff
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      sequencer/src/canvas.C

+ 1
- 1
sequencer/src/canvas.C 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();
}


Loading…
Cancel
Save