From 881339848fe6efe91d8a97123b97c6d611a306f8 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Sun, 21 Apr 2019 21:03:01 +0200 Subject: [PATCH] Remove osd playing connect --- src/core/mainwindow.cpp | 1 - 1 file changed, 1 deletion(-) 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()));