diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-05-05 09:49:31 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-05-05 09:49:31 +0200 |
commit | fea6e5d0c5050c50e5dbae55a35890e6f5133750 (patch) | |
tree | 7f5d88a6d336f48167f1f6374ad3e4eea6cca9b2 | |
parent | cde31a10ed89a8c4c73f07f8460f244fca880df2 (diff) | |
download | kube-fea6e5d0c5050c50e5dbae55a35890e6f5133750.tar.gz kube-fea6e5d0c5050c50e5dbae55a35890e6f5133750.zip |
propperly place accountName
-rw-r--r-- | components/kube/contents/ui/AccountsView.qml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/components/kube/contents/ui/AccountsView.qml b/components/kube/contents/ui/AccountsView.qml index 86a413e7..b5d8d575 100644 --- a/components/kube/contents/ui/AccountsView.qml +++ b/components/kube/contents/ui/AccountsView.qml | |||
@@ -73,7 +73,13 @@ Rectangle { | |||
73 | color: Kube.Colors.viewBackgroundColor | 73 | color: Kube.Colors.viewBackgroundColor |
74 | 74 | ||
75 | Kube.Label { | 75 | Kube.Label { |
76 | anchors.centerIn: parent | 76 | anchors { |
77 | verticalCenter: parent.verticalCenter | ||
78 | left: parent.left | ||
79 | leftMargin: Kube.Units.largeSpacing | ||
80 | } | ||
81 | width: parent.width - Kube.Units.largeSpacing * 2 | ||
82 | |||
77 | text: model.name | 83 | text: model.name |
78 | } | 84 | } |
79 | 85 | ||