diff --git a/src/QmlControls/QGCButton.qml b/src/QmlControls/QGCButton.qml index 5cff7f1dff90a48c96e5e2620d8de4a3a6bd68d9..5238f025a5776612d51e912c4a90ee29b33177e4 100644 --- a/src/QmlControls/QGCButton.qml +++ b/src/QmlControls/QGCButton.qml @@ -66,7 +66,7 @@ Button { anchors.fill: parent border.width: _showBorder ? 1: 0 border.color: _qgcPal.buttonText - radius: 3 + //radius: 3 color: _showHighlight ? control._qgcPal.buttonHighlight : (primary ? control._qgcPal.primaryButton : control._qgcPal.button) diff --git a/src/QmlControls/QGCComboBox.qml b/src/QmlControls/QGCComboBox.qml index 4e2150add8811ef064c356f13548ac7aa851c969..116ffb0e619ed4d9b20b170af34e0cf533d51235 100644 --- a/src/QmlControls/QGCComboBox.qml +++ b/src/QmlControls/QGCComboBox.qml @@ -24,7 +24,7 @@ ComboBox { Rectangle { anchors.fill: parent color: _showHighlight ? control._qgcPal.buttonHighlight : control._qgcPal.button - radius: 3 + //radius: 3 border.width: _showBorder ? 1: 0 border.color: control._qgcPal.buttonText }