mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Add config variable for specifying a default file name for the database
This commit is contained in:
parent
7e8a672de4
commit
4d20cb1654
3 changed files with 9 additions and 3 deletions
|
@ -1980,8 +1980,10 @@ bool DatabaseWidget::saveAs()
|
|||
|
||||
QString oldFilePath = m_db->filePath();
|
||||
if (!QFileInfo::exists(oldFilePath)) {
|
||||
QString defaultFileName = config()->get(Config::DefaultDatabaseFileName).toString();
|
||||
oldFilePath =
|
||||
QDir::toNativeSeparators(config()->get(Config::LastDir).toString() + "/" + tr("Passwords").append(".kdbx"));
|
||||
QDir::toNativeSeparators(config()->get(Config::LastDir).toString() + "/"
|
||||
+ (defaultFileName.isEmpty() ? tr("Passwords").append(".kdbx") : defaultFileName));
|
||||
}
|
||||
const QString newFilePath = fileDialog()->getSaveFileName(
|
||||
this, tr("Save database as"), oldFilePath, tr("KeePass 2 Database").append(" (*.kdbx)"), nullptr, nullptr);
|
||||
|
@ -2068,8 +2070,10 @@ bool DatabaseWidget::saveBackup()
|
|||
while (true) {
|
||||
QString oldFilePath = m_db->filePath();
|
||||
if (!QFileInfo::exists(oldFilePath)) {
|
||||
oldFilePath = QDir::toNativeSeparators(config()->get(Config::LastDir).toString() + "/"
|
||||
+ tr("Passwords").append(".kdbx"));
|
||||
QString defaultFileName = config()->get(Config::DefaultDatabaseFileName).toString();
|
||||
oldFilePath = QDir::toNativeSeparators(
|
||||
config()->get(Config::LastDir).toString() + "/"
|
||||
+ (defaultFileName.isEmpty() ? tr("Passwords").append(".kdbx") : defaultFileName));
|
||||
}
|
||||
|
||||
const QString newFilePath = fileDialog()->getSaveFileName(this,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue