- fix extra debugging output to console

This commit is contained in:
Dmytro Bogovych 2022-05-25 11:58:12 +03:00
parent dc653f24e6
commit ee486da79d

View File

@ -207,7 +207,7 @@ void MainWindow::showMe()
{ {
windowHandle()->setScreen(screen); windowHandle()->setScreen(screen);
setGeometry(screen->geometry()); setGeometry(screen->geometry());
qDebug() << "Window moved to screen " << screen->name() + " / " + screen->model() + " " + screen->manufacturer(); // qDebug() << "Window moved to screen " << screen->name() + " / " + screen->model() + " " + screen->manufacturer();
} }
} }
showFullScreen(); showFullScreen();
@ -332,7 +332,7 @@ void MainWindow::onLongBreakNotify()
void MainWindow::onLongBreakStart() void MainWindow::onLongBreakStart()
{ {
qDebug() << "Long break starts for " << secondsToText(mAppConfig.longbreak_postpone_interval); // qDebug() << "Long break starts for " << secondsToText(mAppConfig.longbreak_postpone_interval);
// Reset idle counter // Reset idle counter
mLastIdleMilliseconds = 0; mLastIdleMilliseconds = 0;
@ -351,7 +351,7 @@ void MainWindow::onLongBreakStart()
void MainWindow::onLongBreakEnd() void MainWindow::onLongBreakEnd()
{ {
qDebug() << "Long break ends."; // qDebug() << "Long break ends.";
// Reset postpone counter // Reset postpone counter
mPostponeCount = 0; mPostponeCount = 0;
@ -387,7 +387,7 @@ void MainWindow::onLongBreakEnd()
void MainWindow::onLongBreakPostpone() void MainWindow::onLongBreakPostpone()
{ {
qDebug() << "Long break postponed."; // qDebug() << "Long break postponed.";
mPostponeCount++; mPostponeCount++;
hideMe(); hideMe();