Index: sources/gui/qml/SDItem.qml =================================================================== diff -u -r2216ac6ac7f77437a7c29ac8b4043be01bc4609e -r7077e38c74db9cccb5496ffefcf8936c0916de76 --- sources/gui/qml/SDItem.qml (.../SDItem.qml) (revision 2216ac6ac7f77437a7c29ac8b4043be01bc4609e) +++ sources/gui/qml/SDItem.qml (.../SDItem.qml) (revision 7077e38c74db9cccb5496ffefcf8936c0916de76) @@ -29,14 +29,17 @@ * The percent value in the circle will show "SD" if the device is not present/ready. */ Rectangle { id: _root // TEST : SD-Card not present may need to be handled with better indication(s). + + signal doubleClicked + color : Colors.transparent anchors { top : parent.top right : parent.right topMargin : 5 rightMargin : 5 } - width : 28 + width : 30 height: width radius: width Text { id: _SDText @@ -56,4 +59,8 @@ color : ! _GuiView.sdIsReady ? "red" : _GuiView.sdIsReadOnly ? "gray" : _GuiView.sdIsLow ? Colors.red : "green" } + MouseArea { + anchors.fill: parent + onDoubleClicked: _root.doubleClicked() + } }