|
|
@ -77,9 +77,16 @@ AddNewTorrentDialog::AddNewTorrentDialog(QWidget *parent) |
|
|
|
|
|
|
|
|
|
|
|
// Load labels
|
|
|
|
// Load labels
|
|
|
|
const QStringList customLabels = pref->getTorrentLabels(); |
|
|
|
const QStringList customLabels = pref->getTorrentLabels(); |
|
|
|
|
|
|
|
const QString defaultLabel = pref->getDefaultLabel(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!defaultLabel.isEmpty()) |
|
|
|
|
|
|
|
ui->label_combo->addItem(defaultLabel); |
|
|
|
ui->label_combo->addItem(""); |
|
|
|
ui->label_combo->addItem(""); |
|
|
|
|
|
|
|
|
|
|
|
foreach (const QString& label, customLabels) |
|
|
|
foreach (const QString& label, customLabels) |
|
|
|
|
|
|
|
if (label != defaultLabel) |
|
|
|
ui->label_combo->addItem(label); |
|
|
|
ui->label_combo->addItem(label); |
|
|
|
|
|
|
|
|
|
|
|
ui->label_combo->model()->sort(0); |
|
|
|
ui->label_combo->model()->sort(0); |
|
|
|
ui->content_tree->header()->setSortIndicator(0, Qt::AscendingOrder); |
|
|
|
ui->content_tree->header()->setSortIndicator(0, Qt::AscendingOrder); |
|
|
|
loadState(); |
|
|
|
loadState(); |
|
|
@ -587,6 +594,9 @@ void AddNewTorrentDialog::accept() |
|
|
|
// Label
|
|
|
|
// Label
|
|
|
|
params.label = ui->label_combo->currentText(); |
|
|
|
params.label = ui->label_combo->currentText(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (ui->defaultLabel->isChecked()) |
|
|
|
|
|
|
|
pref->setDefaultLabel(params.label); |
|
|
|
|
|
|
|
|
|
|
|
// Save file priorities
|
|
|
|
// Save file priorities
|
|
|
|
if (m_contentModel) |
|
|
|
if (m_contentModel) |
|
|
|
params.filePriorities = m_contentModel->model()->getFilePriorities(); |
|
|
|
params.filePriorities = m_contentModel->model()->getFilePriorities(); |
|
|
|