QmlDesigner.propertyEditor: fixes for ListView

This commit is contained in:
Thomas Hartmann
2011-05-06 18:09:45 +02:00
parent e4a2228739
commit d7f3a0c3cc

View File

@@ -9,6 +9,7 @@ QWidget {
rightMargin: 0 rightMargin: 0
spacing: 0 spacing: 0
FlickableGroupBox { FlickableGroupBox {
finished: finishedNotify;
} }
GroupBox { GroupBox {
finished: finishedNotify; finished: finishedNotify;
@@ -16,7 +17,8 @@ QWidget {
layout: VerticalLayout { layout: VerticalLayout {
IntEditor { IntEditor {
backendValue: backendValues.cacheBuffer backendValue: backendValues.cacheBuffer
caption: qsTr("Cache Buffer") caption: qsTr("Cache")
toolTip: qsTr("Cache Buffer")
baseStateFlag: isBaseState; baseStateFlag: isBaseState;
step: 1; step: 1;
minimumValue: 0; minimumValue: 0;
@@ -128,6 +130,8 @@ QWidget {
minimumValue: 0; minimumValue: 0;
maximumValue: 1000; maximumValue: 1000;
} }
}
}
GroupBox { GroupBox {
finished: finishedNotify; finished: finishedNotify;
caption: qsTr("List View Highlight") caption: qsTr("List View Highlight")
@@ -135,7 +139,8 @@ QWidget {
QWidget { QWidget {
layout: HorizontalLayout { layout: HorizontalLayout {
Label { Label {
text: qsTr("Righlight Range") text: qsTr("Range")
toolTip: qsTr("Highlight Range")
} }
ComboBox { ComboBox {
@@ -219,7 +224,7 @@ QWidget {
} }
} }
} }
} QScrollArea {
} }
} }
} }