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
3 changes: 2 additions & 1 deletion panels/dock/AppletItemButton.qml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.
// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: GPL-3.0-or-later

Expand All @@ -25,6 +25,7 @@ IconButton {

icon.width: 16
icon.height: 16
smooth: false

Connections {
target: control
Expand Down
1 change: 1 addition & 0 deletions panels/dock/taskmanager/package/AppItem.qml
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ Item {
sourceSize: Qt.size(iconSize, iconSize)
anchors.centerIn: parent
retainWhileLoading: true
smooth: iconSize > 32

LaunchAnimation {
id: launchAnimation
Expand Down
3 changes: 2 additions & 1 deletion panels/dock/tray/package/ActionLegacyTrayPluginDelegate.qml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: 2024-2026 UnionTech Software Technology Co., Ltd.
// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: GPL-3.0-or-later

Expand Down Expand Up @@ -86,6 +86,7 @@ AppletItemButton {
id: surfaceItem
anchors.fill: parent
shellSurface: pluginItem.plugin
smooth: false
}

Component.onCompleted: {
Expand Down
7 changes: 6 additions & 1 deletion panels/dock/tray/quickpanel/PanelPluginPage.qml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.
// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: GPL-3.0-or-later

Expand Down Expand Up @@ -111,6 +111,11 @@ Item {
width: 16
height: 16
}
Component.onCompleted: {
if (contentItem) {
contentItem.smooth = false
}
}

background: ButtonPanel {
button: btn
Expand Down