diff --git a/Changelog b/Changelog index 2846ee6d9..7b05d7f66 100644 --- a/Changelog +++ b/Changelog @@ -9,6 +9,7 @@ - BUGFIX: Torrents with an infinite ratio are no longer affected by ratio_limit set in program preferences - BUGFIX: Display a ratio of 0.0 if total_upload and total_download are both 0 - BUGFIX: Remove last separator in top tool bar + - BUGFIX: Tuned lists properties to make sure display is correct * Sun Apr 5 2009 - Christophe Dumez - v1.3.3 - BUGFIX: Fixed Web UI torrent upload form diff --git a/src/FinishedTorrents.cpp b/src/FinishedTorrents.cpp index 3c7bb1dfe..74569a87f 100644 --- a/src/FinishedTorrents.cpp +++ b/src/FinishedTorrents.cpp @@ -53,6 +53,8 @@ FinishedTorrents::FinishedTorrents(QObject *parent, bittorrent *BTSession) : par finishedListModel->setHeaderData(F_LEECH, Qt::Horizontal, tr("Leechers", "i.e: full/partial sources")); finishedListModel->setHeaderData(F_RATIO, Qt::Horizontal, tr("Ratio")); finishedList->setModel(finishedListModel); + finishedList->setRootIsDecorated(false); + finishedList->setAllColumnsShowFocus(true); loadHiddenColumns(); // Hide hash column finishedList->hideColumn(F_HASH); diff --git a/src/downloadingTorrents.cpp b/src/downloadingTorrents.cpp index 664077b5d..7bf41fda8 100644 --- a/src/downloadingTorrents.cpp +++ b/src/downloadingTorrents.cpp @@ -68,6 +68,8 @@ DownloadingTorrents::DownloadingTorrents(QObject *parent, bittorrent *BTSession) DLListModel->setHeaderData(ETA, Qt::Horizontal, tr("ETA", "i.e: Estimated Time of Arrival / Time left")); DLListModel->setHeaderData(PRIORITY, Qt::Horizontal, tr("Priority")); downloadList->setModel(DLListModel); + downloadList->setRootIsDecorated(false); + downloadList->setAllColumnsShowFocus(true); DLDelegate = new DLListDelegate(downloadList); downloadList->setItemDelegate(DLDelegate); // Hide priority column