From 534028a91106dcbc0290328715df40f6e41b1198 Mon Sep 17 00:00:00 2001 From: Gus Grubba Date: Thu, 2 Feb 2017 20:09:08 -0500 Subject: [PATCH] Make buttons and comboboxes square again. --- src/QmlControls/QGCButton.qml | 2 +- src/QmlControls/QGCComboBox.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/QmlControls/QGCButton.qml b/src/QmlControls/QGCButton.qml index 5cff7f1df..5238f025a 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 4e2150add..116ffb0e6 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 } -- 2.22.0