Browse Source

- Fixed columns width in transfers list (problem was caused by the hidden "hash" column that didn't have a null size)

adaptive-webui-19844
Christophe Dumez 18 years ago
parent
commit
1c0e890252
  1. 2
      TODO
  2. 4
      src/FinishedTorrents.cpp
  3. 6
      src/GUI.cpp

2
TODO

@ -47,7 +47,7 @@ @@ -47,7 +47,7 @@
- make use of finishedChecking alert if hydri implements it
- Clean up delayed progress column sorting code
- Clean up pause after checking code
- Check hidden columns and width problem in transfers list
- use abort() for session deletion?
- Wait for some bug fixes in libtorrent :
- upload/download limit per torrent (Ticket #83)
- double free or corruption on exit (Ticket #84)

4
src/FinishedTorrents.cpp

@ -121,7 +121,7 @@ bool FinishedTorrents::loadColWidthFinishedList(){ @@ -121,7 +121,7 @@ bool FinishedTorrents::loadColWidthFinishedList(){
if(line.isEmpty())
return false;
QStringList width_list = line.split(' ');
if(width_list.size() != finishedListModel->columnCount())
if(width_list.size() != finishedListModel->columnCount()-1)
return false;
unsigned int listSize = width_list.size();
for(unsigned int i=0; i<listSize; ++i){
@ -137,7 +137,7 @@ void FinishedTorrents::saveColWidthFinishedList() const{ @@ -137,7 +137,7 @@ void FinishedTorrents::saveColWidthFinishedList() const{
qDebug("Saving columns width in finished list");
QSettings settings("qBittorrent", "qBittorrent");
QStringList width_list;
unsigned int nbColumns = finishedListModel->columnCount();
unsigned int nbColumns = finishedListModel->columnCount()-1;
for(unsigned int i=0; i<nbColumns; ++i){
width_list << QString(misc::toString(finishedList->columnWidth(i)).c_str());
}

6
src/GUI.cpp

@ -807,7 +807,7 @@ void GUI::saveColWidthDLList() const{ @@ -807,7 +807,7 @@ void GUI::saveColWidthDLList() const{
qDebug("Saving columns width in download list");
QSettings settings("qBittorrent", "qBittorrent");
QStringList width_list;
unsigned int nbColumns = DLListModel->columnCount();
unsigned int nbColumns = DLListModel->columnCount()-1;
for(unsigned int i=0; i<nbColumns; ++i){
width_list << QString(misc::toString(downloadList->columnWidth(i)).c_str());
}
@ -824,8 +824,10 @@ bool GUI::loadColWidthDLList(){ @@ -824,8 +824,10 @@ bool GUI::loadColWidthDLList(){
if(line.isEmpty())
return false;
QStringList width_list = line.split(' ');
if(width_list.size() != DLListModel->columnCount())
if(width_list.size() != DLListModel->columnCount()-1){
qDebug("Corrupted values for download list columns sizes");
return false;
}
unsigned int listSize = width_list.size();
for(unsigned int i=0; i<listSize; ++i){
downloadList->header()->resizeSection(i, width_list.at(i).toInt());

Loading…
Cancel
Save