Raise convergence app drawer

This commit is contained in:
Marco Allegretti 2026-05-19 09:13:25 +02:00
parent 6d766892b5
commit 3076734300

View file

@ -431,8 +431,14 @@ ContainmentItem {
homeScreen: folioHomeScreen homeScreen: folioHomeScreen
readonly property real popupWidth: Math.min(Kirigami.Units.gridUnit * 28, parent.width * 0.5) readonly property real popupWidth: Math.min(Kirigami.Units.gridUnit * 28, parent.width * 0.5)
readonly property real popupHeight: Math.min(Kirigami.Units.gridUnit * 32, parent.height * 0.7)
readonly property real dockHeight: MobileShell.Constants.convergenceDockHeight readonly property real dockHeight: MobileShell.Constants.convergenceDockHeight
readonly property real popupTopY: MobileShell.Constants.topPanelHeight
+ MobileShell.Constants.convergenceWorkspaceFrameThickness
+ Kirigami.Units.smallSpacing
readonly property real popupBottomY: parent.height
- dockHeight
- MobileShell.Constants.convergenceWorkspaceFrameThickness
readonly property real popupHeight: Math.max(0, popupBottomY - popupTopY)
width: popupWidth width: popupWidth
height: popupHeight height: popupHeight
@ -444,7 +450,7 @@ ContainmentItem {
x: Kirigami.Units.smallSpacing x: Kirigami.Units.smallSpacing
y: (opacity > 0) y: (opacity > 0)
? parent.height - dockHeight - popupHeight - Kirigami.Units.smallSpacing + animationY ? popupTopY + animationY
: parent.height : parent.height
headerHeight: Math.round(Kirigami.Units.gridUnit * 3) headerHeight: Math.round(Kirigami.Units.gridUnit * 3)