1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 07:18:08 +00:00

Save the new save path first in the history. Closes #2382.

This commit is contained in:
sledgehammer999 2015-02-01 01:37:53 +02:00
parent 38455af791
commit 2b24fe09c5

View File

@ -262,10 +262,10 @@ void AddNewTorrentDialog::saveSavePathHistory() const
history_dirs << QDir(dir);
if (!history_dirs.contains(selected_save_path)) {
// Add save path to history
history << selected_save_path.absolutePath();
history.push_front(selected_save_path.absolutePath());
// Limit list size
if (history.size() > 8)
history.removeFirst();
history.pop_back();
// Save history
pref->setAddNewTorrentDialogPathHistory(history);
}