Skip to content

Commit

Permalink
change timer
Browse files Browse the repository at this point in the history
  • Loading branch information
facontidavide committed Feb 4, 2024
1 parent 27dc712 commit 0ad5c92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plotjuggler_app/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1786,7 +1786,7 @@ void MainWindow::setStatusBarMessage(QString message)
{
ui->statusLabel->setText(message);
ui->widgetStatusBar->setHidden(message.isEmpty());
QTimer::singleShot( 5000, this, [this]() { ui->widgetStatusBar->setHidden(true); } );
QTimer::singleShot( 10000, this, [this]() { ui->widgetStatusBar->setHidden(true); } );
}

void MainWindow::loadStyleSheet(QString file_path)
Expand Down

0 comments on commit 0ad5c92

Please sign in to comment.