diff --git a/src/widgets/nowplayingwidget.cpp b/src/widgets/nowplayingwidget.cpp index 0c5b4ce4e..30d9e9582 100644 --- a/src/widgets/nowplayingwidget.cpp +++ b/src/widgets/nowplayingwidget.cpp @@ -27,6 +27,7 @@ #include "ui/albumcoverchoicecontroller.h" #include "ui/iconloader.h" +#include #include #include #include @@ -653,7 +654,10 @@ void NowPlayingWidget::SearchCoverAutomatically() { } void NowPlayingWidget::Bask() { + QDesktopWidget desktop; + int current_screen = desktop.screenNumber(this); big_hypnotoad_.reset(new FullscreenHypnotoad); + big_hypnotoad_->setGeometry(desktop.screenGeometry(current_screen)); big_hypnotoad_->showFullScreen(); }