Fix status bar update when switching to other DB (#9073)

* Gui tests: add validation of StatusBarLabel in some tests
This commit is contained in:
Jonathan White 2023-02-19 07:32:29 -08:00
parent f7920c12d5
commit df40742223
No known key found for this signature in database
GPG key ID: 440FC65F2E0C6E01
3 changed files with 36 additions and 1 deletions

View file

@ -689,6 +689,7 @@ MainWindow::MainWindow()
statusBar()->addPermanentWidget(m_progressBar);
connect(clipboard(), SIGNAL(updateCountdown(int, QString)), this, SLOT(updateProgressBar(int, QString)));
m_statusBarLabel = new QLabel(statusBar());
m_statusBarLabel->setObjectName("statusBarLabel");
statusBar()->addPermanentWidget(m_statusBarLabel);
restoreConfigState();
@ -1352,6 +1353,7 @@ void MainWindow::databaseTabChanged(int tabIndex)
}
m_actionMultiplexer.setCurrentObject(m_ui->tabWidget->currentDatabaseWidget());
updateEntryCountLabel();
}
void MainWindow::closeEvent(QCloseEvent* event)