mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-27 09:30:13 +03:00
Minor property hierarchy fix
Signed-off-by: Dominique Fuchs <32204802+DominiqueFuchs@users.noreply.github.com>
This commit is contained in:
parent
4b79c597dc
commit
585094a719
1 changed files with 2 additions and 1 deletions
|
@ -499,12 +499,13 @@ Window {
|
||||||
|
|
||||||
model: activityModel
|
model: activityModel
|
||||||
|
|
||||||
|
visible: (model.rowCount() > 0)
|
||||||
|
|
||||||
delegate: RowLayout {
|
delegate: RowLayout {
|
||||||
id: activityItem
|
id: activityItem
|
||||||
width: activityListView.width
|
width: activityListView.width
|
||||||
height: trayWindowHeaderLayout.height
|
height: trayWindowHeaderLayout.height
|
||||||
spacing: 0
|
spacing: 0
|
||||||
visible: (activityListView.model.rowCount() > 0)
|
|
||||||
|
|
||||||
Image {
|
Image {
|
||||||
id: activityIcon
|
id: activityIcon
|
||||||
|
|
Loading…
Reference in a new issue