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
4 changes: 2 additions & 2 deletions panels/dock/package/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,8 @@ Window {

Item {
id: dockContainer
width: dock.useColumnLayout ? Panel.dockSize : parent.width
height: dock.useColumnLayout ? parent.height : Panel.dockSize
width: dock.useColumnLayout ? dock.dockSize : parent.width
height: dock.useColumnLayout ? parent.height : dock.dockSize
anchors {
left: parent.left
top: parent.top
Expand Down
2 changes: 1 addition & 1 deletion panels/dock/tray/package/tray.qml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ AppletItem {
isHorizontal: !tray.useColumnLayout
model: DDT.TraySortOrderModel
collapsed: DDT.TraySortOrderModel.collapsed
trayHeight: isHorizontal ? tray.implicitHeight : tray.implicitWidth
trayHeight: Panel.rootObject.dockSize
surfaceAcceptor: isTrayPluginPopup
color: "transparent"
Component.onCompleted: {
Expand Down