1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 01:22:10 +01:00

PageScreen: Use Save dialog instead of Open dialog

[ci-skip]

Closes #1454
This commit is contained in:
David Rosca 2014-09-16 18:01:42 +02:00
parent f86d1b8f2d
commit e3a8e9edc9

View File

@ -101,7 +101,7 @@ void PageScreen::changeLocation()
const QString name = QzTools::filterCharsFromFilename(m_pageTitle).replace(QLatin1Char(' '), QLatin1Char('_'));
const QString suggestedPath = QString("%1/%2.%3").arg(QDir::homePath(), name, m_formats[ui->formats->currentIndex()].toLower());
const QString path = QzTools::getOpenFileName("PageScreen-Location", this, tr("Choose location..."), suggestedPath);
const QString path = QzTools::getSaveFileName("PageScreen-Location", this, tr("Choose location..."), suggestedPath);
if (!path.isEmpty()) {
ui->location->setText(path);