mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-10 23:07:59 +00:00
- Fix 'Browse' [...] button is RSS Feed Downloader dialog (Thanks Mariusz)
This commit is contained in:
parent
422c03b4ec
commit
617724c2b1
@ -287,6 +287,17 @@ protected slots:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void on_browse_button_clicked() {
|
||||||
|
QString default_path = savepath_line->text();
|
||||||
|
if(default_path.isEmpty() || !QDir(default_path).exists()) {
|
||||||
|
default_path = QDir::homePath();
|
||||||
|
}
|
||||||
|
QString dir = QFileDialog::getExistingDirectory(this, tr("Choose save path"), QDir::homePath());
|
||||||
|
if(!dir.isNull() and QDir(dir).exists()) {
|
||||||
|
savepath_line->setText(dir);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void fillFiltersList() {
|
void fillFiltersList() {
|
||||||
// Fill filter list
|
// Fill filter list
|
||||||
foreach(QString filter_name, filters.names()) {
|
foreach(QString filter_name, filters.names()) {
|
||||||
@ -434,7 +445,11 @@ protected slots:
|
|||||||
}
|
}
|
||||||
|
|
||||||
void on_testButton_clicked(bool) {
|
void on_testButton_clicked(bool) {
|
||||||
if(selected_filter.isEmpty()) return;
|
test_res_lbl->clear();
|
||||||
|
if(selected_filter.isEmpty()) {
|
||||||
|
qDebug("No filter is selected!!!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
QString s = test_line->text().trimmed();
|
QString s = test_line->text().trimmed();
|
||||||
if(s.isEmpty()) {
|
if(s.isEmpty()) {
|
||||||
QMessageBox::warning(0, tr("Filter testing error"), tr("Please specify a test torrent name."));
|
QMessageBox::warning(0, tr("Filter testing error"), tr("Please specify a test torrent name."));
|
||||||
|
Loading…
Reference in New Issue
Block a user