Skip to content

Commit

Permalink
feat: modify the spacing between the title and the top
Browse files Browse the repository at this point in the history
Set the space for title layout to 0

Issue: linuxdeepin/developer-center#8418
  • Loading branch information
mhduiy authored and kegechen committed May 28, 2024
1 parent e0d3623 commit 0f2c010
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/widgets/ddialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,14 @@ void DDialogPrivate::init()
spacer = new QSpacerItem(1, 0);

// MainLayout--TopLayout
mainLayout->setSpacing(0);
mainLayout->addWidget(titleBar, 0, Qt::AlignTop);
mainLayout->addWidget(contentWidget);
mainLayout->setContentsMargins(QMargins(0, 0, 0, 0));

// MainLayout--ButtonLayout
buttonLayout = new QHBoxLayout;
buttonLayout->setSpacing(5);
buttonLayout->setContentsMargins(DIALOG::BUTTON_LAYOUT_LEFT_MARGIN,
DIALOG::BUTTON_LAYOUT_TOP_MARGIN,
DIALOG::BUTTON_LAYOUT_RIGHT_MARGIN,
Expand Down

0 comments on commit 0f2c010

Please sign in to comment.