Commit aa1814ef authored by Gavin Bisesi's avatar Gavin Bisesi
Browse files

Merge pull request #610 from Cockatrice/oracle-save-location

Inform user of cards.xml save location on success
parents 62c4c0f4 cbdb1b8b
......@@ -445,7 +445,9 @@ bool SaveSetsPage::validatePage()
if (wizard()->importer->saveToFile(fileName))
{
ok = true;
QMessageBox::information(this, tr("Success"), tr("The card database has been saved successfully."));
QMessageBox::information(this,
tr("Success"),
tr("The card database has been saved successfully to\n%1").arg(fileName));
} else {
QMessageBox::critical(this, tr("Error"), tr("The file could not be saved to %1").arg(fileName));;
if (defaultPathCheckBox->isChecked())
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment