aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/designer/RadioButtonSpecifics.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/controls/designer/RadioButtonSpecifics.qml')
-rw-r--r--src/imports/controls/designer/RadioButtonSpecifics.qml29
1 files changed, 2 insertions, 27 deletions
diff --git a/src/imports/controls/designer/RadioButtonSpecifics.qml b/src/imports/controls/designer/RadioButtonSpecifics.qml
index 285b660a..f10c1170 100644
--- a/src/imports/controls/designer/RadioButtonSpecifics.qml
+++ b/src/imports/controls/designer/RadioButtonSpecifics.qml
@@ -41,34 +41,9 @@ import QtQuick.Layouts 1.0
Column {
width: parent.width
- Section {
- width: parent.width
+ ButtonSection {
caption: qsTr("Radio Button")
-
- SectionLayout {
- Label {
- text: qsTr("Text")
- tooltip: qsTr("The text displayed on the radio button.")
- }
- SecondColumnLayout {
- LineEdit {
- backendValue: backendValues.text
- Layout.fillWidth: true
- }
- }
-
- Label {
- text: qsTr("Checked")
- tooltip: qsTr("The checked state of the radio button.")
- }
- SecondColumnLayout {
- CheckBox {
- text: backendValues.checked.valueToString
- backendValue: backendValues.checked
- Layout.fillWidth: true
- }
- }
- }
+ width: parent.width
}
ControlSection {