TransferListWidget: keep columns width even if they are hidden on qBittorrent startup (unless something goes wrong)

This commit is contained in:
thalieht 2016-06-22 20:01:02 +03:00
parent c90794878f
commit 1652425cee

View file

@ -141,7 +141,7 @@ TransferListWidget::TransferListWidget(QWidget *parent, MainWindow *main_window)
//end up being size 0 when the new version is launched with
//a conf file from the previous version.
for (unsigned int i = 0; i<TorrentModel::NB_COLUMNS; i++)
if (!columnWidth(i))
if ((columnWidth(i) <= 0) && (!isColumnHidden(i)))
resizeColumnToContents(i);
setContextMenuPolicy(Qt::CustomContextMenu);