mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
FileTransferInstance improvements
This commit is contained in:
parent
d92bad3f9c
commit
0a6342ae98
|
@ -46,7 +46,7 @@ FileTransferInstance::FileTransferInstance(ToxFile File)
|
||||||
|
|
||||||
filenameElided = fm.elidedText(filename, Qt::ElideRight, MAX_CONTENT_WIDTH);
|
filenameElided = fm.elidedText(filename, Qt::ElideRight, MAX_CONTENT_WIDTH);
|
||||||
size = getHumanReadableSize(File.filesize);
|
size = getHumanReadableSize(File.filesize);
|
||||||
contentPrefWidth = std::max(fm.boundingRect(filenameElided).width(), fm.width(size));
|
contentPrefWidth = std::max(fm.width(filenameElided), fm.width(size)) + fm.leading();
|
||||||
|
|
||||||
speed = "0B/s";
|
speed = "0B/s";
|
||||||
eta = "00:00";
|
eta = "00:00";
|
||||||
|
@ -401,6 +401,8 @@ QString FileTransferInstance::insertMiniature(const QString &type)
|
||||||
res = "<td><div class=" + type + ">\n";
|
res = "<td><div class=" + type + ">\n";
|
||||||
res += "<img src=\"data:mini." + widgetId + "/png;base64," + QImage2base64(pic) + "\">";
|
res += "<img src=\"data:mini." + widgetId + "/png;base64," + QImage2base64(pic) + "\">";
|
||||||
res += "</div></td>\n";
|
res += "</div></td>\n";
|
||||||
|
res += "<td width=5><div class=" + type + ">\n";
|
||||||
|
res += "</div></td>\n";
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user