Skip to content
Merged
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
5 changes: 4 additions & 1 deletion shell-launcher-applet/package/launcheritem.qml
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,10 @@ AppletItem {
readonly property bool isDarkTheme: D.DTK.themeType === D.ApplicationHelper.DarkType
readonly property int dockThickness: dockIsHorizontal ? Panel.rootObject.height
: Panel.rootObject.width
readonly property int dockExclusion: dockThickness + DesktopIntegration.dockSpacing
readonly property int dockReservedZone: DesktopIntegration.isTreeLand() ? Panel.rootObject.DLayerShellWindow.exclusionZone : 0

readonly property int dockExclusion: DesktopIntegration.dockSpacing
+ Math.max(0, dockThickness - dockReservedZone)
readonly property int iconAlignOffset: Math.max(dockIsHorizontal ? itemPos.x : itemPos.y,
DesktopIntegration.dockSpacing)

Expand Down
Loading