Show a busy cursor while doing master key transformations.

This commit is contained in:
Felix Geyer 2012-07-27 18:54:35 +02:00
parent 3a2f387892
commit 886187baee
4 changed files with 11 additions and 1 deletions

View file

@ -504,7 +504,9 @@ void DatabaseWidget::switchToGroupEdit(Group* group, bool create)
void DatabaseWidget::updateMasterKey(bool accepted)
{
if (accepted) {
QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
m_db->setKey(m_changeMasterKeyWidget->newMasterKey());
QApplication::restoreOverrideCursor();
}
else if (!m_db->hasKey()) {
Q_EMIT closeRequest();