mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-15 20:51:39 +03:00
TransferListWidget: keep columns width even if they are hidden on qBittorrent startup (unless something goes wrong)
This commit is contained in:
parent
c90794878f
commit
1652425cee
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue