Index: sources/gui/qml/main.qml =================================================================== diff -u -ree50b509107a743f6133a33371e18646ff9c10b2 -r4df19fe88c454bd54abcdaf983be59464c5ef5bc --- sources/gui/qml/main.qml (.../main.qml) (revision ee50b509107a743f6133a33371e18646ff9c10b2) +++ sources/gui/qml/main.qml (.../main.qml) (revision 4df19fe88c454bd54abcdaf983be59464c5ef5bc) @@ -227,6 +227,24 @@ font.pixelSize: 14 } + Rectangle { // TEST : SD-Card not present should be handled with better indication(s). + color : ! _GuiView.sdIsReady ? "red" : _GuiView.sdIsReadOnly ? "gray" : "green" + anchors { + right : parent.right + bottom : parent.bottom + bottomMargin: 35 + rightMargin: 10 + } + width : 25 + height: 25 + radius: width + Image { id: _imageMicrosd + anchors.fill: parent + source: "qrc:/images/iMicroSD" + } + visible: true // ! _GuiView.sdIsReady || _GuiView.sdIsReadOnly + } + function getRootTextFromAlarmLevel(level) { let root_color = ""; let text_color = "";