aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorThomas Hartmann <Thomas.Hartmann@nokia.com>2011-08-02 11:57:04 +0200
committerThomas Hartmann <Thomas.Hartmann@nokia.com>2011-08-02 11:58:35 +0200
commit3571b9f31a0c88e11ae6260624266f36172cb954 (patch)
treea45e5253457756e4ca298778a22d9eca91b8601e /share
parentc1850305e67d0cbad08a8bd43168a264ce996f1e (diff)
QmlDesigner.propertyEditor: fix for border image
SourceSize is read only. Change-Id: If5fe2e25026098efde942bbc63948fd3e27f6545 Reviewed-on: http://codereview.qt.nokia.com/2506 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@nokia.com>
Diffstat (limited to 'share')
-rw-r--r--share/qtcreator/qmldesigner/propertyeditor/Qt/BorderImageSpecifics.qml35
1 files changed, 0 insertions, 35 deletions
diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/BorderImageSpecifics.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/BorderImageSpecifics.qml
index 10a73dff433..047f8915860 100644
--- a/share/qtcreator/qmldesigner/propertyeditor/Qt/BorderImageSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/BorderImageSpecifics.qml
@@ -69,41 +69,6 @@ QWidget {
}
}
- QWidget { // 1
- layout: HorizontalLayout {
-
- Label {
- text: qsTr("Source size")
- }
-
- DoubleSpinBox {
- text: "W"
- alignRight: false
- spacing: 4
- singleStep: 1;
- enabled: anchorBackend.hasParent;
- backendValue: backendValues.sourceSize_width
- minimum: -2000;
- maximum: 2000;
- baseStateFlag: isBaseState;
- }
-
- DoubleSpinBox {
- singleStep: 1;
- text: "H"
- alignRight: false
- spacing: 4
- backendValue: backendValues.sourceSize_height
- enabled: anchorBackend.hasParent;
- minimum: -2000;
- maximum: 2000;
- baseStateFlag: isBaseState;
- }
-
-
- }
- } //QWidget //1
-
IntEditor {
id: pixelSize;