From c9bed139ee286ef875b6c206f515049ccdd90084 Mon Sep 17 00:00:00 2001 From: renbin Date: Tue, 16 Jan 2024 09:53:43 +0800 Subject: [PATCH] fix: Fix the issue with the thickness of the dividing line. Fix the issue with the thickness of the dividing line in the Rename Window Log: Shorten the thickness of the dividing line in the Rename Window Bug: https://pms.uniontech.com/bug-view-156719.html --- libimageviewer/widgets/renamedialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libimageviewer/widgets/renamedialog.cpp b/libimageviewer/widgets/renamedialog.cpp index 0dead2f0..6f1e9c64 100644 --- a/libimageviewer/widgets/renamedialog.cpp +++ b/libimageviewer/widgets/renamedialog.cpp @@ -37,7 +37,7 @@ RenameDialog::RenameDialog(const QString &filename, QWidget *parent) m_edtlayout = new QHBoxLayout(); m_lineedt = new DLineEdit(widet); QFrame *line = new QFrame(widet); - line->setLineWidth(2); + line->setLineWidth(1); line->setFixedHeight(25); // 垂直分割线短于按钮高度 QLbtoDLabel *labtitle = new QLbtoDLabel(); okbtn = new DSuggestButton(tr("Confirm"), widet);