diff --git a/src/core/mainwindow.cpp b/src/core/mainwindow.cpp index aa24203a2..73d18a3b1 100644 --- a/src/core/mainwindow.cpp +++ b/src/core/mainwindow.cpp @@ -985,7 +985,11 @@ void MainWindow::ExitFinished() { void MainWindow::EngineChanged(Engine::EngineType enginetype) { ui_->action_equalizer->setEnabled(enginetype == Engine::EngineType::GStreamer || enginetype == Engine::EngineType::Xine); +#ifdef Q_OS_WIN + ui_->action_open_cd->setEnabled(false); +#else ui_->action_open_cd->setEnabled(enginetype == Engine::EngineType::GStreamer); +#endif }