Skip to content
Snippets Groups Projects
Commit 503cedde authored by Thomas Hartmann's avatar Thomas Hartmann
Browse files

QmlDesigner.propertyEditor: bug fix for gradient editing

parent a4e9f282
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,14 @@ QExtGroupBox {
color = singleColor;
}
onGradientButtonCheckedChanged: {
if (buttons.gradient == true)
color = gradientColor;
if (!buttons.gradient == true && color != singleColor)
color = singleColor;
colorChanged();
}
onFinishedChanged: {
oldMaximumHeight = maximumHeight;
//visible = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment