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
6 changes: 5 additions & 1 deletion panels/notification/center/NotifyCenter.qml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ FocusScope {
anchors.fill: parent
NotifyHeader {
id: header
anchors {
top: parent.top
left: parent.left
}
height: 40
width: parent.width
notifyModel: notifyModel
Expand All @@ -37,6 +41,7 @@ FocusScope {
left: parent.left
top: header.bottom
topMargin: 10
bottom: parent.bottom
}

width: parent.width
Expand All @@ -45,4 +50,3 @@ FocusScope {
}
}
}

13 changes: 12 additions & 1 deletion panels/notification/center/package/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -82,17 +82,22 @@ Window {
}
}

ColumnLayout {
Item {
id: view
width: parent.width
anchors {
top: parent.top
left: parent.left
margins: 10
bottom: parent.bottom
}

NotifyStaging {
id: notifyStaging
anchors {
top: parent.top
left: parent.left
}
implicitWidth: 360
Connections {
target: Panel
Expand All @@ -108,6 +113,12 @@ Window {

NotifyCenter {
id: notifyCenter
anchors {
top: notifyStaging.bottom
left: parent.left
bottom: parent.bottom
}

Connections {
target: Panel
function onVisibleChanged() {
Expand Down
Loading