This commit is contained in:
Your Name
2024-04-28 14:29:40 -05:00
parent 8aa23c5317
commit ca72245a53
2 changed files with 3 additions and 3 deletions

View File

@@ -50,11 +50,11 @@ void ReadyWindow::paintEvent(QPaintEvent *event) {
void ReadyWindow::showEvent(QShowEvent *event) { void ReadyWindow::showEvent(QShowEvent *event) {
refresh(); refresh();
timer->start(120 * 1000); // timer->start(120 * 1000);
} }
void ReadyWindow::hideEvent(QHideEvent *event) { void ReadyWindow::hideEvent(QHideEvent *event) {
timer->stop(); // timer->stop();
} }
void ReadyWindow::updateState(const UIState &s) { void ReadyWindow::updateState(const UIState &s) {

View File

@@ -26,5 +26,5 @@ private slots:
void hideEvent(QHideEvent *event) override; void hideEvent(QHideEvent *event) override;
void refresh(); void refresh();
QTimer* timer; // QTimer* timer;
}; };