From 705478fdf0c3157543bb0afca540527e550d762b Mon Sep 17 00:00:00 2001 From: momen Date: Sun, 8 Jun 2025 10:33:34 +0800 Subject: [PATCH] =?UTF-8?q?chore:=E5=8F=96=E6=B6=88=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E7=9A=84=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/appdelegate.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/appdelegate.cpp b/src/appdelegate.cpp index c5043ea..682247b 100644 --- a/src/appdelegate.cpp +++ b/src/appdelegate.cpp @@ -61,7 +61,8 @@ void AppDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, c painter->setFont(normalFont); painter->setPen(QColor("#AAAAAA")); painter->drawText(descRect, Qt::TextWordWrap, - QString("更新说明:%1\n包大小:%2").arg(description, size)); + // QString("更新说明:%1\n包大小:%2").arg(description, size)); + QString("包大小:%1").arg(size)); // 更新按钮(样式占位) QRect buttonRect(rect.right() - 80, rect.top() + (rect.height() - 30) / 2, 70, 30);