mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
fixed display issue in last commit
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3969 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
7d1441f730
commit
635f0f51f1
@ -170,7 +170,7 @@ void FileTransferInfoWidget::draw(const FileInfo& nfo,const FileChunksInfo& info
|
|||||||
int size_of_this_chunk = ( info.active_chunks[i].first == info.chunks.size()-1 && ((info.file_size % blockSize)>0) )?(info.file_size % blockSize):blockSize ;
|
int size_of_this_chunk = ( info.active_chunks[i].first == info.chunks.size()-1 && ((info.file_size % blockSize)>0) )?(info.file_size % blockSize):blockSize ;
|
||||||
uint32_t s = (uint32_t)rint(sizeX*(size_of_this_chunk - info.active_chunks[i].second)/(float)size_of_this_chunk) ;
|
uint32_t s = (uint32_t)rint(sizeX*(size_of_this_chunk - info.active_chunks[i].second)/(float)size_of_this_chunk) ;
|
||||||
|
|
||||||
std::cerr << "chunk " << info.active_chunks[i].first << ": Last received byte: " << size_of_this_chunk - info.active_chunks[i].second << std::endl;
|
//std::cerr << "chunk " << info.active_chunks[i].first << ": Last received byte: " << size_of_this_chunk - info.active_chunks[i].second << std::endl;
|
||||||
|
|
||||||
// Already Downloaded.
|
// Already Downloaded.
|
||||||
//
|
//
|
||||||
@ -197,7 +197,7 @@ void FileTransferInfoWidget::draw(const FileInfo& nfo,const FileChunksInfo& info
|
|||||||
painter->setPen(QColor::fromRgb(0,0,0)) ;
|
painter->setPen(QColor::fromRgb(0,0,0)) ;
|
||||||
float percent = (size_of_this_chunk - info.active_chunks[i].second)*100.0/size_of_this_chunk ;
|
float percent = (size_of_this_chunk - info.active_chunks[i].second)*100.0/size_of_this_chunk ;
|
||||||
|
|
||||||
painter->drawText(sizeX+55,y+text_height,QString::number(percent,'g',3) + " %") ;
|
painter->drawText(sizeX+55,y+text_height,QString::number(percent,'f',2) + " %") ;
|
||||||
|
|
||||||
y += sizeY+block_sep ;
|
y += sizeY+block_sep ;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user