Skip to content

Commit

Permalink
fix: [dialog] display issue
Browse files Browse the repository at this point in the history
do not use setStyleSheet to set background color.

Log: fix display issue
Bug: https://pms.uniontech.com/bug-view-249409.html
  • Loading branch information
Lighto-Ku authored and Johnson-zs committed Apr 3, 2024
1 parent e5f1190 commit 38234ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dfm-base/dialogs/taskdialog/taskdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ void TaskDialog::initUI()
titlebar->layout()->setContentsMargins(0, 0, 0, 0);
titlebar->setMenuVisible(false);
titlebar->setIcon(QIcon::fromTheme("dde-file-manager"));
titlebar->setStyleSheet("background-color:rgba(0, 0, 0, 0)");
titlebar->setAutoFillBackground(false);

taskListWidget = new QListWidget(this);
taskListWidget->setSelectionMode(QListWidget::NoSelection);
Expand Down

0 comments on commit 38234ae

Please sign in to comment.