From ea1d7afdef8adda5a09a51335820a2bb5504d77b Mon Sep 17 00:00:00 2001 From: Gabriele Date: Sun, 19 Oct 2014 16:56:30 +0200 Subject: [PATCH] Focus transfer list on startup The torrent list filter will be focused otherwise and its placeholder text will be hidden on startup. --- src/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 3b013c85e..f1b4f9b3b 100755 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -311,6 +311,7 @@ MainWindow::MainWindow(QWidget *parent, const QStringList& torrentCmdLine) : QMa // Populate the transfer list transferList->getSourceModel()->populate(); + transferList->setFocus(); // Update the number of torrents (tab) updateNbTorrents();