Skip to content

Commit

Permalink
Refs #2, connecting signals properly.
Browse files Browse the repository at this point in the history
  • Loading branch information
doumdi committed Mar 15, 2024
1 parent 612fc6d commit 7755503
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ Item {

Connections {
target: siteProjectDelegateSite
onItemClicked: rootItem.itemClicked
onItemClicked: function (id, definition){rootItem.itemClicked(id, definition);}
}

}
Expand All @@ -141,11 +141,11 @@ Item {

ScrollBar.vertical: FlickableScrollBar {}
delegate: SiteProjectDelegate {
id: siteProjectdelegateProject
id: siteProjectDelegateProject

Connections {
target: siteProjectdelegateProject
onItemClicked: rootItem.itemClicked
target: siteProjectDelegateProject
onItemClicked: function (id, definition){rootItem.itemClicked(id, definition);}
}

}
Expand Down

0 comments on commit 7755503

Please sign in to comment.