Browse Source

Merge pull request #3234 from glassez/openfile

Fix crash when cancel open file dialog.
adaptive-webui-19844
sledgehammer999 10 years ago
parent
commit
061fbeff56
  1. 2
      src/gui/mainwindow.cpp

2
src/gui/mainwindow.cpp

@ -1028,6 +1028,7 @@ void MainWindow::on_actionOpen_triggered() @@ -1028,6 +1028,7 @@ void MainWindow::on_actionOpen_triggered()
QFileDialog::getOpenFileNames(0, tr("Open Torrent Files"), pref->getMainLastDir(),
tr("Torrent Files") + QString::fromUtf8(" (*.torrent)"));
const bool useTorrentAdditionDialog = Preferences::instance()->useAdditionDialog();
if (!pathsList.isEmpty()) {
foreach (QString file, pathsList) {
qDebug("Dropped file %s on download list", qPrintable(file));
if (useTorrentAdditionDialog)
@ -1040,6 +1041,7 @@ void MainWindow::on_actionOpen_triggered() @@ -1040,6 +1041,7 @@ void MainWindow::on_actionOpen_triggered()
QStringList top_dir = Utils::Fs::fromNativePath(pathsList.at(0)).split("/");
top_dir.removeLast();
pref->setMainLastDir(Utils::Fs::fromNativePath(top_dir.join("/")));
}
}
void MainWindow::activate()

Loading…
Cancel
Save