mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
Fix status bar update when switching to other DB (#9073)
* Gui tests: add validation of StatusBarLabel in some tests
This commit is contained in:
parent
f7920c12d5
commit
df40742223
3 changed files with 36 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue