Skip to content

Commit

Permalink
fix: Fix the issue with the thickness of the dividing line.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
rb-union committed Jan 16, 2024
1 parent 6ae2ef2 commit c9bed13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libimageviewer/widgets/renamedialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit c9bed13

Please sign in to comment.