Skip to content
Snippets Groups Projects
Commit e7cdb4ea authored by Miikka Heikkinen's avatar Miikka Heikkinen
Browse files

QmlDesigner: Allow area light dimensions larger than 100


There is no reason to cap area light dimensions to the default 100.

Change-Id: I07a3c933c2209182defa51aea690b640c6a66cc5
Fixes: QDS-1914
Reviewed-by: default avatarMahmoud Badri <mahmoud.badri@qt.io>
Reviewed-by: default avatarThomas Hartmann <thomas.hartmann@qt.io>
parent 962950bf
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,8 @@ Column {
SecondColumnLayout {
SpinBox {
minimumValue: 0
maximumValue: 100
maximumValue: 9999999
realDragRange: 5000
decimals: 0
backendValue: backendValues.width
Layout.fillWidth: true
......@@ -87,7 +88,8 @@ Column {
SecondColumnLayout {
SpinBox {
minimumValue: 0
maximumValue: 100
maximumValue: 9999999
realDragRange: 5000
decimals: 0
backendValue: backendValues.height
Layout.fillWidth: true
......
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