summaryrefslogtreecommitdiff
path: root/libs/ardour/session_transport.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-05-13 00:31:24 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2015-06-29 14:18:13 -0400
commit3a65005a75851c9a41b694babd51f5054972e5dc (patch)
treecb4c3a101abe97621740aa7a2481c2af8709ad3d /libs/ardour/session_transport.cc
parent7592b5d3e1e8d9a9475c8c21f901ef3b72b89dc1 (diff)
remove Tracks runtime conditional, incorrectly added during manual merging
Diffstat (limited to 'libs/ardour/session_transport.cc')
-rw-r--r--libs/ardour/session_transport.cc14
1 files changed, 6 insertions, 8 deletions
diff --git a/libs/ardour/session_transport.cc b/libs/ardour/session_transport.cc
index f73b935d94..42ef46ca25 100644
--- a/libs/ardour/session_transport.cc
+++ b/libs/ardour/session_transport.cc
@@ -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;
}
}
}