Skip to content

Commit

Permalink
sync: from linuxdeepin/dtkwidget
Browse files Browse the repository at this point in the history
Synchronize source files from linuxdeepin/dtkwidget.

Source-pull-request: linuxdeepin/dtkwidget#578
  • Loading branch information
deepin-ci-robot authored and mhduiy committed Jul 3, 2024
1 parent c0fd6fd commit c45fcc3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/widgets/dabstractdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ void DAbstractDialogPrivate::init(bool blurIfPossible)
q->setAttribute(Qt::WA_TranslucentBackground, blurIfPossible);
} else if (noTitlebarEnabled()) {
handle = new DPlatformWindowHandle(q, q);

if (!handle->enableBlurWindow()) {
handle->setEnableBlurWindow(true);
}

// fix wayland no titlebar
//q->setWindowFlags(q->windowFlags() | Qt::FramelessWindowHint);
}
Expand Down
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 c45fcc3

Please sign in to comment.