Index: sources/gui/qml/dialogs/NotificationDialog.qml =================================================================== diff -u -r9d19afe7963673863456c676ba79236234e9e9e0 -r0bc5c7e5752e76707f92b9ef1ecfe54b0c5ead29 --- sources/gui/qml/dialogs/NotificationDialog.qml (.../NotificationDialog.qml) (revision 9d19afe7963673863456c676ba79236234e9e9e0) +++ sources/gui/qml/dialogs/NotificationDialog.qml (.../NotificationDialog.qml) (revision 0bc5c7e5752e76707f92b9ef1ecfe54b0c5ead29) @@ -21,6 +21,7 @@ // Qml imports import "qrc:/globals" import "qrc:/components" +import "qrc:/compounds" /*! * \brief Contains the Alarm Dialog Implementation @@ -123,19 +124,29 @@ bottom : _timerRect.top } - HelpNotification { id: _infoItem + AutoStepController { id: _autoStepControl anchors { left : parent.left leftMargin : Variables.defaultMargin * 4 top : parent.top - topMargin : Variables.defaultMargin * 3 + topMargin : Variables.defaultMargin * 2 } + + onTriggered : _listView.currentIndex = (_listView.currentIndex + 1) % _listView.count } + HelpNotification { id: _infoItem + anchors { + left : _autoStepControl.right + leftMargin : Variables.defaultMargin * 2 + verticalCenter : _autoStepControl.verticalCenter + } + } + ListView {id: _listView anchors { top : _infoItem.bottom - topMargin : Variables.defaultMargin + topMargin : Variables.defaultMargin * 3 bottom : parent.bottom left : parent.left leftMargin : Variables.defaultMargin * 4