remove Tracks runtime conditional, incorrectly added during manual merging
[ardour.git] / libs / ardour / session_transport.cc
index f73b935d94a486dcd4606c069e35936d8277366d..42ef46ca257e34f7a76ef3206050dc1b780a6328 100644 (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;
                        }
                }
        }