aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/components/designer/StrokeDetailsSection.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/components/designer/StrokeDetailsSection.qml')
-rw-r--r--src/imports/components/designer/StrokeDetailsSection.qml16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/imports/components/designer/StrokeDetailsSection.qml b/src/imports/components/designer/StrokeDetailsSection.qml
index 96e8a87..3e6c599 100644
--- a/src/imports/components/designer/StrokeDetailsSection.qml
+++ b/src/imports/components/designer/StrokeDetailsSection.qml
@@ -40,6 +40,7 @@ Section {
property bool showCapStyle: true
property bool showBorderMode: false
+ property bool showRadiusAdjustmentment: false
property bool showJoinStyle: false
property bool showHideLine: false
@@ -56,6 +57,21 @@ Section {
ExpandingSpacer {}
}
+ PropertyLabel {
+ text: qsTr("Adjust radius")
+ visible: showRadiusAdjustmentment
+ }
+
+ SecondColumnLayout {
+ visible: showRadiusAdjustmentment
+ CheckBox {
+ id: adjustRadiusBox
+ text: qsTr("Adjust border radius")
+ implicitWidth: StudioTheme.Values.twoControlColumnWidth
+ backendValue: backendValues.adjustBorderRadius
+ }
+ }
+
PropertyLabel { text: qsTr("Stroke style") }
SecondColumnLayout {