Index: sources/gui/qml/pages/rxmanager/RxManager.qml =================================================================== diff -u -rb4d8fe6f11b7cdf0c631b3ab35ba36f18e0d7bc4 -readfcc99876849e52370db5dde4c4c42d4dbc76f --- sources/gui/qml/pages/rxmanager/RxManager.qml (.../RxManager.qml) (revision b4d8fe6f11b7cdf0c631b3ab35ba36f18e0d7bc4) +++ sources/gui/qml/pages/rxmanager/RxManager.qml (.../RxManager.qml) (revision eadfcc99876849e52370db5dde4c4c42d4dbc76f) @@ -13,6 +13,7 @@ Item { id: _root signal addProfile() + signal loadProfile() property bool onShow: true property bool showCreateRx: false @@ -30,7 +31,7 @@ onShow: _root.onShow visible: ! showCreateRx onAddClicked:{ - addProfile() + _root.addProfile() } } RxManagerList{ @@ -42,8 +43,12 @@ top : _rxHeader.bottom leftMargin : Variables.defaultMargin * 3 rightMargin : Variables.defaultMargin * 3 - bottomMargin: Variables.notificationHeight + Variables.alarmDialogHeaderHeight + bottomMargin: _root.onShow ? Variables.notificationHeight + Variables.alarmDialogHeaderHeight : Variables.notificationHeight } - model: vRxProfiles.rxProfiles + model: vRxProfiles.rxProfiles + onShow: _root.onShow + onLoadRxProfile:{ + _root.loadProfile() + } } }