Fix up hack to cope with zero-length imported MIDI regions so that it actually works.
git-svn-id: svn://localhost/ardour2/branches/3.0@12629 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
de2d3057b5
commit
8da3833895
@ -788,7 +788,7 @@ Editor::add_sources (vector<string> paths, SourceList& sources, framepos_t& pos,
|
|||||||
*/
|
*/
|
||||||
framecnt_t len = (*x)->length (pos);
|
framecnt_t len = (*x)->length (pos);
|
||||||
if (len == 0) {
|
if (len == 0) {
|
||||||
len = (60 / 120) * _session->frame_rate ();
|
len = (60.0 / 120.0) * _session->frame_rate ();
|
||||||
}
|
}
|
||||||
|
|
||||||
plist.add (ARDOUR::Properties::start, 0);
|
plist.add (ARDOUR::Properties::start, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user