aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@digia.com>2014-03-28 16:32:42 +0100
committerEike Ziller <eike.ziller@digia.com>2014-03-31 12:30:30 +0200
commit90f8de5c8a50d0b2033ba3e5b1a4e17c4fec4da8 (patch)
treec54a78206c0dba04ae31e31ead6d4a5a770cc7a4 /share
parent29b0c1022c2b8b978903e9efed519504bf6613e6 (diff)
Examples: Move example combo box to the left
That makes it more visible, which is especially important when we show example sets that do not come from a Qt version there. Change-Id: Ib99955e70abb95053d9e8cd718ab599153e6eaaf Reviewed-by: Kai Koehne <kai.koehne@digia.com> Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'share')
-rw-r--r--share/qtcreator/welcomescreen/examples.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/share/qtcreator/welcomescreen/examples.qml b/share/qtcreator/welcomescreen/examples.qml
index 2509922ce6..53d77a0d3b 100644
--- a/share/qtcreator/welcomescreen/examples.qml
+++ b/share/qtcreator/welcomescreen/examples.qml
@@ -51,10 +51,10 @@ Rectangle {
y: 52
- anchors.right: comboBox.left
- anchors.rightMargin: 20
- anchors.left: parent.left
- anchors.leftMargin: 60
+ anchors.left: comboBox.right
+ anchors.rightMargin: 52
+ anchors.right: parent.right
+ anchors.leftMargin: 18
placeholderText: qsTr("Search in Examples...")
onTextChanged: examplesModel.parseSearchString(text)
@@ -66,8 +66,8 @@ Rectangle {
anchors.verticalCenter: searchBar.verticalCenter
width: 200
- anchors.rightMargin: 80
- anchors.right: parent.right
+ anchors.leftMargin: 46
+ anchors.left: parent.left
model: exampleSetModel
textRole: "text"