Skip to content
This repository was archived by the owner on Mar 28, 2026. It is now read-only.

Commit 6c7a37d

Browse files
committed
Fix extra seek update (MPRIS)
1 parent 5a12a08 commit 6c7a37d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/mpris/MprisPlayerAdaptor.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,13 +135,11 @@ void MprisPlayerAdaptor::Play()
135135
void MprisPlayerAdaptor::Seek(qint64 offset)
136136
{
137137
m_component->Seek(offset);
138-
Q_EMIT Seeked(m_component->position());
139138
}
140139

141140
void MprisPlayerAdaptor::SetPosition(const QDBusObjectPath& trackId, qint64 position)
142141
{
143142
m_component->SetPosition(trackId, position);
144-
Q_EMIT Seeked(m_component->position());
145143
}
146144

147145
void MprisPlayerAdaptor::OpenUri(const QString& uri)

0 commit comments

Comments
 (0)