Merge Win32 changes from stable branch

This commit is contained in:
Christophe Dumez 2010-06-02 13:08:26 +00:00
commit a0d685bfe2
2 changed files with 24 additions and 13 deletions

View file

@ -919,7 +919,11 @@ void TransferListWidget::displayDLHoSMenu(const QPoint&){
act = hideshowColumn.exec(QCursor::pos());
if(act) {
int col = actions.indexOf(act);
Q_ASSERT(col >= 0);
qDebug("Toggling column %d visibility", col);
setColumnHidden(col, !isColumnHidden(col));
if(!isColumnHidden(col))
setColumnWidth(col, 100);
}
}