Browse Source

Refactor in searchjob to always color visited entries

Now it colors multiple entries, when visited at once, via the hotkey or
the Download button.
adaptive-webui-19844
thalieht 6 years ago committed by thalieht
parent
commit
ce3e68670d
  1. 2
      src/gui/search/searchjobwidget.cpp

2
src/gui/search/searchjobwidget.cpp

@ -164,7 +164,6 @@ SearchJobWidget::~SearchJobWidget() @@ -164,7 +164,6 @@ SearchJobWidget::~SearchJobWidget()
void SearchJobWidget::onItemDoubleClicked(const QModelIndex &index)
{
setRowColor(index.row(), QApplication::palette().color(QPalette::LinkVisited));
downloadTorrent(index);
}
@ -257,6 +256,7 @@ void SearchJobWidget::downloadTorrent(const QModelIndex &rowIndex) @@ -257,6 +256,7 @@ void SearchJobWidget::downloadTorrent(const QModelIndex &rowIndex)
connect(downloadHandler, &SearchDownloadHandler::downloadFinished, this, &SearchJobWidget::addTorrentToSession);
connect(downloadHandler, &SearchDownloadHandler::downloadFinished, downloadHandler, &SearchDownloadHandler::deleteLater);
}
setRowColor(rowIndex.row(), QApplication::palette().color(QPalette::LinkVisited));
}
void SearchJobWidget::addTorrentToSession(const QString &source)

Loading…
Cancel
Save