mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 13:04:23 +00: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
@ -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…
x
Reference in New Issue
Block a user