Skip to content

Commit

Permalink
Fix ActivityList delegate warnings·
Browse files Browse the repository at this point in the history
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
  • Loading branch information
claucambra committed Nov 14, 2022
1 parent 075b681 commit a167eee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/tray/ActivityList.qml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ ScrollView {
}

delegate: ActivityItem {
anchors.left: parent.left
anchors.right: parent.right
anchors.left: if (parent) parent.left
anchors.right: if (parent) parent.right
anchors.leftMargin: controlRoot.delegateHorizontalPadding
anchors.rightMargin: controlRoot.delegateHorizontalPadding

Expand Down

0 comments on commit a167eee

Please sign in to comment.