Browse Source

- As a default, sort search results list by Top seed first

adaptive-webui-19844
Christophe Dumez 15 years ago
parent
commit
f3af4867fd
  1. 3
      src/SearchTab.cpp

3
src/SearchTab.cpp

@ -84,6 +84,9 @@ SearchTab::SearchTab(SearchEngine *parent) : QWidget(), parent(parent)
if(!loadColWidthResultsList()){ if(!loadColWidthResultsList()){
resultsBrowser->header()->resizeSection(0, 275); resultsBrowser->header()->resizeSection(0, 275);
} }
// Sort by Seeds
resultsBrowser->sortByColumn(SEEDERS, Qt::DescendingOrder);
} }
void SearchTab::downloadSelectedItem(const QModelIndex& index) { void SearchTab::downloadSelectedItem(const QModelIndex& index) {

Loading…
Cancel
Save