Compare commits
1 commit
master
...
work/gener
Author | SHA1 | Date | |
---|---|---|---|
|
93769a1161 |
1 changed files with 5 additions and 1 deletions
|
@ -21,6 +21,10 @@ PlasmoidItem
|
|||
|| plasmoid.location == PlasmaCore.Types.BottomEdge
|
||||
|| plasmoid.location == PlasmaCore.Types.LeftEdge)
|
||||
|
||||
DevicesModel {
|
||||
id: allDevicesModel
|
||||
}
|
||||
|
||||
DevicesModel {
|
||||
id: connectDeviceModel
|
||||
displayFilter: DevicesModel.Paired | DevicesModel.Reachable
|
||||
|
@ -44,7 +48,7 @@ PlasmoidItem
|
|||
Binding {
|
||||
target: plasmoid
|
||||
property: "status"
|
||||
value: (connectDeviceModel.count > 0) ? PlasmaCore.Types.ActiveStatus : PlasmaCore.Types.PassiveStatus
|
||||
value: (connectDeviceModel.count > 0) ? PlasmaCore.Types.ActiveStatus : ((allDevicesModel.count === 0) ? PlasmaCore.Types.PassiveStatus : PlasmaCore.Types.HiddenStatus)
|
||||
}
|
||||
|
||||
fullRepresentation: FullRepresentation {
|
||||
|
|
Loading…
Reference in a new issue