mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-20 07:27:22 -06:00
Fix default width of file name column in torrent content
This commit is contained in:
@@ -1,3 +1,6 @@
|
|||||||
|
* Unreleased - Christophe Dumez <chris@qbittorrent.org> - v2.2.5
|
||||||
|
- BUGFIX: Fix default width of file name column in torrent content
|
||||||
|
|
||||||
* Tue Apr 06 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.2.4
|
* Tue Apr 06 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.2.4
|
||||||
- BUGFIX: Fix possible crash when adding a torrent
|
- BUGFIX: Fix possible crash when adding a torrent
|
||||||
- BUGFIX: Fix failure to remember some torrents on startup
|
- BUGFIX: Fix failure to remember some torrents on startup
|
||||||
|
|||||||
@@ -254,7 +254,7 @@ void PropertiesWidget::readSettings() {
|
|||||||
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent"));
|
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent"));
|
||||||
QVariantList contentColsWidths = settings.value(QString::fromUtf8("TorrentProperties/filesColsWidth"), QVariantList()).toList();
|
QVariantList contentColsWidths = settings.value(QString::fromUtf8("TorrentProperties/filesColsWidth"), QVariantList()).toList();
|
||||||
if(contentColsWidths.empty()) {
|
if(contentColsWidths.empty()) {
|
||||||
filesList->header()->resizeSection(0, filesList->width()/2.);
|
filesList->header()->resizeSection(0, 300);
|
||||||
} else {
|
} else {
|
||||||
for(int i=0; i<contentColsWidths.size(); ++i) {
|
for(int i=0; i<contentColsWidths.size(); ++i) {
|
||||||
filesList->setColumnWidth(i, contentColsWidths.at(i).toInt());
|
filesList->setColumnWidth(i, contentColsWidths.at(i).toInt());
|
||||||
|
|||||||
Reference in New Issue
Block a user