dashboard on right, change trigger to clock

This commit is contained in:
Zacharias-Brohn
2026-02-14 12:22:10 +01:00
parent a645c28d4f
commit df1d877c8f
12 changed files with 99 additions and 87 deletions
+11 -9
View File
@@ -30,7 +30,7 @@ RowLayout {
return;
}
if ( visibilities.sidebar )
if ( visibilities.sidebar || visibilities.dashboard )
return;
const id = ch.id;
@@ -145,6 +145,7 @@ RowLayout {
delegate: WrappedLoader {
sourceComponent: NotifBell {
visibilities: root.visibilities
popouts: root.popouts
}
}
}
@@ -153,6 +154,7 @@ RowLayout {
delegate: WrappedLoader {
sourceComponent: Clock {
popouts: root.popouts
visibilities: root.visibilities
loader: root
}
}
@@ -178,14 +180,14 @@ RowLayout {
sourceComponent: NetworkWidget {}
}
}
DelegateChoice {
roleValue: "dash"
delegate: WrappedLoader {
sourceComponent: DashWidget {
visibilities: root.visibilities
}
}
}
// DelegateChoice {
// roleValue: "dash"
// delegate: WrappedLoader {
// sourceComponent: DashWidget {
// visibilities: root.visibilities
// }
// }
// }
}
}