diff --git a/mainwindow.cpp b/mainwindow.cpp index ee2ce7d..3959adc 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -181,7 +181,7 @@ void MainWindow::showNotification(QString str){ auto popUp = new NotificationWidget(this); popUp->setPopupText(str); - popUp->setGeometry(0, 0, popUp->width(), popUp->height()); + popUp->setGeometry(200, 100, popUp->width(), popUp->height()); popUp->show(); auto *timer = new QTimer(); connect(timer, SIGNAL(timeout()), popUp, SLOT(fadeOut()));