修改默认行高.

This commit is contained in:
iaom 2022-10-26 17:36:44 +08:00
parent 37a8c471f1
commit 217e60872b
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ void ResultViewDelegate::setSearchKeyword(const QString &regFindKeyWords)
QSize ResultViewDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const
{
QSize size = QStyledItemDelegate::sizeHint(option,index);
size.setHeight(size.height() + 50);
size.setHeight(size.height() + 10);
return size;
}