1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-07-04 03:02:28 +00:00

Fix am issue with page stack titles when navigationg the password list

This commit is contained in:
2025-01-14 13:57:29 +01:00
parent fd3ab95b27
commit 00116aea8c
6 changed files with 40 additions and 40 deletions

View File

@ -39,7 +39,7 @@ void Pass::show(QUrl url)
emit decryptCanceled();
} else {
qInfo() << "Decrypt OK";
emit decrypted(decrypt_ret.second);
emit decrypted(url.fileName(), decrypt_ret.second);
}
}

View File

@ -15,7 +15,7 @@ private:
QString m_password_store;
signals:
void decrypted(QString text);
void decrypted(QString name, QString text);
void decryptCanceled();
void decryptFailed();