summaryrefslogtreecommitdiffstats
path: root/framework/qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-07-26 11:24:33 -0600
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-07-26 11:24:33 -0600
commit6f1a299d5b2929dcdac6fca72e9a1eb635d25c55 (patch)
treedb03dbd303bff2a810f7f2aa706dc53add8f796e /framework/qml
parentc545b2e480d29d4a2149ca4cbadd84b6d23542e8 (diff)
downloadkube-6f1a299d5b2929dcdac6fca72e9a1eb635d25c55.tar.gz
kube-6f1a299d5b2929dcdac6fca72e9a1eb635d25c55.zip
Cleanup
Diffstat (limited to 'framework/qml')
-rw-r--r--framework/qml/InlineAccountSwitcher.qml13
1 files changed, 7 insertions, 6 deletions
diff --git a/framework/qml/InlineAccountSwitcher.qml b/framework/qml/InlineAccountSwitcher.qml
index ae1d0dc7..15425c68 100644
--- a/framework/qml/InlineAccountSwitcher.qml
+++ b/framework/qml/InlineAccountSwitcher.qml
@@ -56,11 +56,13 @@ FocusScope {
56 Layout.fillHeight: isCurrent 56 Layout.fillHeight: isCurrent
57 57
58 Kube.TextButton { 58 Kube.TextButton {
59 id: accountLabel 59 id: accountButton
60 anchors.top: parent.top 60 anchors {
61 anchors.left: parent.left 61 top: parent.top
62 left: parent.left
63 right: parent.right
64 }
62 height: Kube.Units.gridUnit 65 height: Kube.Units.gridUnit
63 width: parent.width
64 66
65 textColor: Kube.Colors.highlightedTextColor 67 textColor: Kube.Colors.highlightedTextColor
66 activeFocusOnTab: !isCurrent 68 activeFocusOnTab: !isCurrent
@@ -70,12 +72,11 @@ FocusScope {
70 font.family: Kube.Font.fontFamily 72 font.family: Kube.Font.fontFamily
71 horizontalAlignment: Text.AlignHLeft 73 horizontalAlignment: Text.AlignHLeft
72 padding: 0 74 padding: 0
73
74 } 75 }
75 76
76 Kube.FolderListView { 77 Kube.FolderListView {
77 anchors { 78 anchors {
78 top: accountLabel.bottom 79 top: accountButton.bottom
79 left: parent.left 80 left: parent.left
80 right: parent.right 81 right: parent.right
81 bottom: parent.bottom 82 bottom: parent.bottom