diff --git a/Changelog b/Changelog index af6f53d39..0262edc0e 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,6 @@ +* Unreleased - Christophe Dumez - v2.2.5 + - BUGFIX: Fix default width of file name column in torrent content + * Tue Apr 06 2010 - Christophe Dumez - v2.2.4 - BUGFIX: Fix possible crash when adding a torrent - BUGFIX: Fix failure to remember some torrents on startup diff --git a/src/propertieswidget.cpp b/src/propertieswidget.cpp index 2f57c1a41..c30f5564e 100644 --- a/src/propertieswidget.cpp +++ b/src/propertieswidget.cpp @@ -254,7 +254,7 @@ void PropertiesWidget::readSettings() { QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent")); QVariantList contentColsWidths = settings.value(QString::fromUtf8("TorrentProperties/filesColsWidth"), QVariantList()).toList(); if(contentColsWidths.empty()) { - filesList->header()->resizeSection(0, filesList->width()/2.); + filesList->header()->resizeSection(0, 300); } else { for(int i=0; isetColumnWidth(i, contentColsWidths.at(i).toInt());