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:
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -15,7 +15,7 @@ private:
|
||||
QString m_password_store;
|
||||
|
||||
signals:
|
||||
void decrypted(QString text);
|
||||
void decrypted(QString name, QString text);
|
||||
void decryptCanceled();
|
||||
void decryptFailed();
|
||||
|
||||
|
Reference in New Issue
Block a user