From f3032575af20b1868540ec8cf6beddce38e8510b Mon Sep 17 00:00:00 2001 From: Spekular Date: Sun, 24 May 2020 21:02:24 +0200 Subject: [PATCH] Remove stopPlaying connection Missed this in #5477 --- src/tracks/SampleTrack.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/tracks/SampleTrack.cpp b/src/tracks/SampleTrack.cpp index f377e35cf..9232cc8b0 100644 --- a/src/tracks/SampleTrack.cpp +++ b/src/tracks/SampleTrack.cpp @@ -843,8 +843,6 @@ SampleTrackView::SampleTrackView( SampleTrack * _t, TrackContainerView* tcv ) : m_activityIndicator->setGeometry(settingsWidgetWidth - 2 * 24 - 11, 2, 8, 28); m_activityIndicator->show(); connect(_t, SIGNAL(playingChanged()), this, SLOT(updateIndicator())); - connect(Engine::getSong(), SIGNAL(stopped()), - this, SLOT(stopPlaying())); setModel( _t );