diff --git a/src/core/mainwindow.cpp b/src/core/mainwindow.cpp index b4a19c7e5..b913f7143 100644 --- a/src/core/mainwindow.cpp +++ b/src/core/mainwindow.cpp @@ -468,7 +468,6 @@ MainWindow::MainWindow(Application *app, SystemTrayIcon *tray_icon, OSD *osd, co connect(app_->player(), SIGNAL(Playing()), ui_->playlist, SLOT(ActivePlaying())); connect(app_->player(), SIGNAL(Stopped()), ui_->playlist, SLOT(ActiveStopped())); - connect(app_->player(), SIGNAL(Playing()), osd_, SLOT(Playing())); connect(app_->player(), SIGNAL(Paused()), osd_, SLOT(Paused())); connect(app_->player(), SIGNAL(Stopped()), osd_, SLOT(Stopped())); connect(app_->player(), SIGNAL(PlaylistFinished()), osd_, SLOT(PlaylistFinished()));