Index: sources/gui/qml/dialogs/AlarmDialog.qml =================================================================== diff -u -r3c0010b123fe25246ec7f040965d0a37e8e9a7cc -rd59edcf7fa2a0f096e22d330012dbaefa4bda374 --- sources/gui/qml/dialogs/AlarmDialog.qml (.../AlarmDialog.qml) (revision 3c0010b123fe25246ec7f040965d0a37e8e9a7cc) +++ sources/gui/qml/dialogs/AlarmDialog.qml (.../AlarmDialog.qml) (revision d59edcf7fa2a0f096e22d330012dbaefa4bda374) @@ -6,6 +6,7 @@ // Qml imports import "qrc:/globals" import "qrc:/components" +import "qrc:/compounds" Item { id : _root @@ -101,18 +102,20 @@ bottom : _timerRect.top } - HelpNotification { id: _infoItem + AutoStepController { id: _autoStepController 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 } ListView {id: _listView anchors { - top : _infoItem.bottom + top : _autoStepController.bottom topMargin : Variables.defaultMargin bottom : parent.bottom left : parent.left