13
0

remove Tracks runtime conditional, incorrectly added during manual merging

This commit is contained in:
Paul Davis 2015-05-13 00:31:24 -04:00
parent 7592b5d3e1
commit 3a65005a75

View File

@ -537,14 +537,12 @@ Session::select_playhead_priority_target (framepos_t& jump_to)
if (!_range_selection.empty()) {
jump_to = _range_selection.from;
} else {
if (Profile->get_trx()) {
if (transport_rolling ()) {
/* Range selection no longer exists, but we're playing,
so do nothing. Next stop will put us where
we need to be.
*/
return false;
}
if (transport_rolling ()) {
/* Range selection no longer exists, but we're playing,
so do nothing. Next stop will put us where
we need to be.
*/
return false;
}
}
}