Index: sources/gui/qml/components/BaseComboBox.qml =================================================================== diff -u -r9c818f9b2600fa0fb9375f5923bf01ffcbb17e0f -r10d95daf091fedda008906727088648f66ae5bac --- sources/gui/qml/components/BaseComboBox.qml (.../BaseComboBox.qml) (revision 9c818f9b2600fa0fb9375f5923bf01ffcbb17e0f) +++ sources/gui/qml/components/BaseComboBox.qml (.../BaseComboBox.qml) (revision 10d95daf091fedda008906727088648f66ae5bac) @@ -28,7 +28,6 @@ property alias dropDownWidth : _popup.width property int delegateWidth : dropDownWidth property int delegateHeight : height - property int actualValue : 0 width : 300 displayText : _root.isActive ? currentText : Variables.emptyEntry @@ -38,14 +37,10 @@ signal clear() - onActivated : _root.isActive = true onClear : { currentIndex = 0 - isActive = false } - function refresh () { currentIndex = actualValue } - contentItem: Text { id: _displayText text : parent.displayText color : Colors.offWhite