This commit is contained in:
Your Name
2024-05-09 21:25:27 -05:00
parent 7d9065c868
commit fecc8c1aaa
2 changed files with 0 additions and 5 deletions

View File

@@ -32,7 +32,6 @@ ReadyWindow::ReadyWindow(QWidget *parent) : QWidget(parent) {
timer->callOnTimeout(this, &ReadyWindow::refresh); timer->callOnTimeout(this, &ReadyWindow::refresh);
} }
void ReadyWindow::showEvent(QShowEvent *event) { void ReadyWindow::showEvent(QShowEvent *event) {
refresh(); refresh();
timer->start(5 * 1000); timer->start(5 * 1000);

View File

@@ -28,8 +28,4 @@ private:
QString cur_temp; QString cur_temp;
QPixmap img_ready; QPixmap img_ready;
QPixmap img_hot; QPixmap img_hot;
private slots:
void showEvent(QShowEvent *event) override;
void hideEvent(QHideEvent *event) override;
}; };