Browse Source

Fix debug message

adaptive-webui-19844
Christophe Dumez 14 years ago
parent
commit
e989e686a4
  1. 2
      src/torrentadditiondlg.cpp

2
src/torrentadditiondlg.cpp

@ -135,7 +135,7 @@ void torrentAdditionDialog::readSettings() {
QIniSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent")); QIniSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent"));
restoreGeometry(settings.value("TorrentAdditionDlg/dimensions").toByteArray()); restoreGeometry(settings.value("TorrentAdditionDlg/dimensions").toByteArray());
if(!torrentContentList->header()->restoreState(settings.value("TorrentAdditionDlg/ContentHeaderState").toByteArray())) { if(!torrentContentList->header()->restoreState(settings.value("TorrentAdditionDlg/ContentHeaderState").toByteArray())) {
qDebug() << Q_FUNC_INFO << "First executation, resize first section to 200px..."; qDebug() << Q_FUNC_INFO << "First executation, resize first section to 400px...";
torrentContentList->header()->resizeSection(0, 400); //Default torrentContentList->header()->resizeSection(0, 400); //Default
} }
} }

Loading…
Cancel
Save