diff options
Diffstat (limited to 'components/package/contents/ui/FolderListView.qml')
-rw-r--r-- | components/package/contents/ui/FolderListView.qml | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/components/package/contents/ui/FolderListView.qml b/components/package/contents/ui/FolderListView.qml index e8600832..e7db2905 100644 --- a/components/package/contents/ui/FolderListView.qml +++ b/components/package/contents/ui/FolderListView.qml | |||
@@ -96,11 +96,15 @@ Rectangle { | |||
96 | rowDelegate: Rectangle { | 96 | rowDelegate: Rectangle { |
97 | color: styleData.selected ? Kirigami.Theme.highlightColor : Kirigami.Theme.textColor | 97 | color: styleData.selected ? Kirigami.Theme.highlightColor : Kirigami.Theme.textColor |
98 | 98 | ||
99 | height: Kirigami.Units.gridUnit * 2 | 99 | height: Kirigami.Units.gridUnit * 1.5 |
100 | width: 20 | 100 | width: 20 |
101 | 101 | ||
102 | } | 102 | } |
103 | 103 | ||
104 | frame: Rectangle { | ||
105 | color: Kirigami.Theme.textColor | ||
106 | } | ||
107 | |||
104 | branchDelegate: Item { | 108 | branchDelegate: Item { |
105 | 109 | ||
106 | width: 16; height: 16 | 110 | width: 16; height: 16 |
@@ -120,6 +124,19 @@ Rectangle { | |||
120 | 124 | ||
121 | color: styleData.selected ? Kirigami.Theme.highlightColor : Kirigami.Theme.textColor | 125 | color: styleData.selected ? Kirigami.Theme.highlightColor : Kirigami.Theme.textColor |
122 | 126 | ||
127 | DropArea { | ||
128 | anchors.fill: parent | ||
129 | |||
130 | Rectangle { | ||
131 | anchors.fill: parent | ||
132 | color: Kirigami.Theme.viewBackgroundColor | ||
133 | |||
134 | opacity: 0.3 | ||
135 | |||
136 | visible: parent.containsDrag | ||
137 | } | ||
138 | } | ||
139 | |||
123 | Text { | 140 | Text { |
124 | anchors { | 141 | anchors { |
125 | verticalCenter: parent.verticalCenter | 142 | verticalCenter: parent.verticalCenter |