summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-07-16 00:03:06 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-07-16 00:03:06 +0200
commit205f753fc631d1b8f34ebd9f7ed1509ca8197d94 (patch)
tree2d677c41dd7433cefc2ca55f8d3568808ec64aaa
parent9f489dbb3091ed86c028713603c1108dae49a084 (diff)
downloadkube-205f753fc631d1b8f34ebd9f7ed1509ca8197d94.tar.gz
kube-205f753fc631d1b8f34ebd9f7ed1509ca8197d94.zip
Removed unncessary Item and fixed indentation
-rw-r--r--framework/qml/People.qml22
1 files changed, 6 insertions, 16 deletions
diff --git a/framework/qml/People.qml b/framework/qml/People.qml
index 79a00b08..41cada2a 100644
--- a/framework/qml/People.qml
+++ b/framework/qml/People.qml
@@ -215,23 +215,14 @@ Item {
215 215
216 color: Kube.Colors.viewBackgroundColor 216 color: Kube.Colors.viewBackgroundColor
217 217
218 Item { 218 Flickable {
219 id: personPageFlickable
219 220
220 anchors { 221 anchors {
221 top: parent.top 222 fill: parent
222 left: parent.left
223 right: parent.right
224 leftMargin: Kube.Units.largeSpacing 223 leftMargin: Kube.Units.largeSpacing
225 } 224 }
226 225
227 height: parent.height
228
229
230 Flickable {
231 id: personPageFlickable
232
233 anchors.fill: parent
234
235 ScrollBar.vertical: ScrollBar { } 226 ScrollBar.vertical: ScrollBar { }
236 contentHeight: contentColumn.height 227 contentHeight: contentColumn.height
237 228
@@ -429,10 +420,9 @@ Item {
429// } 420// }
430// } 421// }
431 422
432 Item { 423 Item {
433 width: parent.width 424 width: parent.width
434 height: Kube.Units.largeSpacing 425 height: Kube.Units.largeSpacing
435 }
436 } 426 }
437 } 427 }
438 } 428 }