Skip to content

Commit 5fdc17f

Browse files
yixinsharkdeepin-bot[bot]
authored andcommitted
fix: error max height of embed plugin popup
as title Log: as title
1 parent 6d1c2e8 commit 5fdc17f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

panels/dock/tray/quickpanel/SubPluginPage.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Item {
1414
implicitWidth: 330
1515
implicitHeight: contentHeight
1616

17-
readonly property int contentHeight: Math.min(Math.max(subPluginMinHeight, subPluginView.height), 600)
17+
readonly property int contentHeight: Math.min(Math.max(subPluginMinHeight, subPluginView.height), 600 + titleLayer.height + headerMargin)
1818
required property var pluginId
1919
property alias shellSurface: surfaceLayer.shellSurface
2020
required property var model

0 commit comments

Comments
 (0)