Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
dde-network-core (2.0.21) unstable; urgency=medium

* fix: dss plugin shouldn't acquire focus

-- YuMing He <[email protected]> Tue, 30 Jan 2024 21:42:11 +0800

dde-network-core (2.0.20) unstable; urgency=medium

* fix #6014
Expand Down
1 change: 1 addition & 0 deletions dss-network-plugin/network_module.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,7 @@ QString NetworkPlugin::icon() const
QWidget *NetworkPlugin::itemWidget() const
{
DIconButton *iconButton = new DIconButton;
iconButton->setFocusPolicy(Qt::NoFocus);
iconButton->setFlat(true);
iconButton->setAttribute(Qt::WA_TransparentForMouseEvents);
iconButton->setIconSize({26, 26});
Expand Down