Index: sources/gui/qml/pages/rxmanager/RxManagerList.qml =================================================================== diff -u -r47e53a72dae5a817465b3ef0be9f98a9dd16f60a -readfcc99876849e52370db5dde4c4c42d4dbc76f --- sources/gui/qml/pages/rxmanager/RxManagerList.qml (.../RxManagerList.qml) (revision 47e53a72dae5a817465b3ef0be9f98a9dd16f60a) +++ sources/gui/qml/pages/rxmanager/RxManagerList.qml (.../RxManagerList.qml) (revision eadfcc99876849e52370db5dde4c4c42d4dbc76f) @@ -22,14 +22,24 @@ Item{ id: _root + signal loadRxProfile() property alias model: _listView.model + property bool onShow: true height: parent.height - (Variables.mainMenuHeight + Variables.alarmDialogHeaderHeight) ListView{ anchors.fill: _root clip: true spacing: Variables.defaultMargin id: _listView - delegate: RxProfileContainer { id: _rxProfileContainer } + delegate: Component { + RxProfileContainer { id: _rxProfileContainer + onShow: _root.onShow + onLoadRxProfile: { + _root.loadRxProfile() + } + } + } + } }