1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-23 13:04:23 +00:00

Fix large strings not visible in log widget

This commit is contained in:
jagannatharjun 2020-05-29 23:24:21 +05:30
parent 68d4dc34db
commit 8267898655

View File

@ -70,13 +70,16 @@ namespace
painter->save(); painter->save();
QStyledItemDelegate::paint(painter, option, index); // paints background, focus rect and selection rect QStyledItemDelegate::paint(painter, option, index); // paints background, focus rect and selection rect
const QStyle *style = option.widget ? option.widget->style() : QApplication::style();; const QStyle *style = option.widget ? option.widget->style() : QApplication::style();
const QRect textRect = style->subElementRect(QStyle::SE_ItemViewItemText, &option, option.widget) const QRect textRect = style->subElementRect(QStyle::SE_ItemViewItemText, &option, option.widget)
.adjusted(1, 0, 0, 0); // shift 1 to avoid text being too close to focus rect .adjusted(1, 0, 0, 0); // shift 1 to avoid text being too close to focus rect
// for unknown reasons (fixme) painter won't accept some font properties
// until they are set explicitly, and we have to manually set some font properties
QFont font = option.font; QFont font = option.font;
if (option.font.pointSize() > 0) font.setFamily(option.font.family());
font.setPointSize(option.font.pointSize()); // somehow this needs to be set directly otherwise painter will use default font if (option.font.pointSizeF() > 0) // for better scaling we use floating point version
font.setPointSizeF(option.font.pointSizeF());
painter->setFont(font); painter->setFont(font);
const QPen originalPen = painter->pen(); const QPen originalPen = painter->pen();