summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorEran Mizrahi <erasmux@gmail.com>2017-12-26 21:01:57 +0200
committerEran Mizrahi <erasmux@gmail.com>2017-12-26 21:01:57 +0200
commiteb3cfe259430c374ad8aa33151a79002687691c8 (patch)
tree425b04d4c6c7f670c529a0b1bbe2ec1afd557535 /src/mainwindow.cpp
parent482f3d1f6d790ebd411aba4552ff4dcd936a2955 (diff)
Default to sorting newest download first
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 3e1c6e04..263a2984 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -3852,7 +3852,7 @@ void MainWindow::updateDownloadListDelegate()
connect(ui->downloadFilterEdit, SIGNAL(textChanged(QString)), this, SLOT(downloadFilterChanged(QString)));
ui->downloadView->setModel(sortProxy);
- ui->downloadView->sortByColumn(1, Qt::AscendingOrder);
+ ui->downloadView->sortByColumn(1, Qt::DescendingOrder);
ui->downloadView->header()->resizeSections(QHeaderView::Fixed);
connect(ui->downloadView->itemDelegate(), SIGNAL(installDownload(int)), &m_OrganizerCore, SLOT(installDownload(int)));