diff --git a/Changelog b/Changelog index f302d6068..4e4dc9693 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,6 @@ +* Unreleased - Christophe Dumez - v2.4.7 + - BUGFIX: Display the priority column when the queueing system gets enabled + * Sun Oct 17 2010 - Christophe Dumez - v2.4.6 - BUGFIX: Fix "torrent seeding after creation" feature - BUGFIX: The properties panel data would sometimes not match the selected torrent diff --git a/src/GUI.cpp b/src/GUI.cpp index ae7ae2946..59c9f23e1 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -964,7 +964,7 @@ void GUI::loadPreferences(bool configure_session) { properties->getPeerList()->setAlternatingRowColors(Preferences::useAlternatingRowColors()); // Queueing System if(Preferences::isQueueingSystemEnabled()) { - if(!configure_session || !BTSession->isQueueingEnabled()) { + if(!actionDecreasePriority->isVisible()) { transferList->hidePriorityColumn(false); actionDecreasePriority->setVisible(true); actionIncreasePriority->setVisible(true); @@ -973,7 +973,7 @@ void GUI::loadPreferences(bool configure_session) { toolBar->layout()->setSpacing(7); } } else { - if(BTSession->isQueueingEnabled()) { + if(actionDecreasePriority->isVisible()) { transferList->hidePriorityColumn(true); actionDecreasePriority->setVisible(false); actionIncreasePriority->setVisible(false); diff --git a/src/transferlistwidget.cpp b/src/transferlistwidget.cpp index 0e1d421ea..3d4243ac8 100644 --- a/src/transferlistwidget.cpp +++ b/src/transferlistwidget.cpp @@ -861,6 +861,7 @@ void TransferListWidget::copySelectedMagnetURIs() const { } void TransferListWidget::hidePriorityColumn(bool hide) { + qDebug("hidePriorityColumn(%d)", hide); setColumnHidden(TR_PRIORITY, hide); }