|
|
@ -63,8 +63,8 @@ QWidget *ScanFoldersDelegate::createEditor(QWidget *parent, const QStyleOptionVi |
|
|
|
QComboBox* editor = new QComboBox(parent); |
|
|
|
QComboBox* editor = new QComboBox(parent); |
|
|
|
|
|
|
|
|
|
|
|
editor->setFocusPolicy(Qt::StrongFocus); |
|
|
|
editor->setFocusPolicy(Qt::StrongFocus); |
|
|
|
editor->addItem(tr("Watch Folder")); |
|
|
|
editor->addItem(tr("Same as monitored folder")); |
|
|
|
editor->addItem(tr("Default Folder")); |
|
|
|
editor->addItem(tr("Default save location")); |
|
|
|
editor->addItem(tr("Browse...")); |
|
|
|
editor->addItem(tr("Browse...")); |
|
|
|
if (index.data(Qt::UserRole).toInt() == ScanFoldersModel::CUSTOM_LOCATION) { |
|
|
|
if (index.data(Qt::UserRole).toInt() == ScanFoldersModel::CUSTOM_LOCATION) { |
|
|
|
editor->insertSeparator(3); |
|
|
|
editor->insertSeparator(3); |
|
|
@ -99,7 +99,7 @@ void ScanFoldersDelegate::setModelData(QWidget *editor, QAbstractItemModel *mode |
|
|
|
model->setData( |
|
|
|
model->setData( |
|
|
|
index, |
|
|
|
index, |
|
|
|
QFileDialog::getExistingDirectory( |
|
|
|
QFileDialog::getExistingDirectory( |
|
|
|
0, tr("Choose save path"), |
|
|
|
0, tr("Select save location"), |
|
|
|
index.data(Qt::UserRole).toInt() == ScanFoldersModel::CUSTOM_LOCATION ? |
|
|
|
index.data(Qt::UserRole).toInt() == ScanFoldersModel::CUSTOM_LOCATION ? |
|
|
|
index.data().toString() : |
|
|
|
index.data().toString() : |
|
|
|
BitTorrent::Session::instance()->defaultSavePath()), |
|
|
|
BitTorrent::Session::instance()->defaultSavePath()), |
|
|
|