Skip to content

Commit

Permalink
fix: Fix the issue that the pop-up window does not match the system c…
Browse files Browse the repository at this point in the history
…ontrols

change the thickness of the dividing line in rename window

log: Fix the issue with the wrong thickness of the dividing line in rename window
Bug: https://pms.uniontech.com/bug-view-194649.html
  • Loading branch information
rb-union authored and lJxDabab committed Jan 17, 2024
1 parent 3ab2395 commit 87637ab
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 87637ab

Please sign in to comment.