chore: clean warnings
This commit is contained in:
parent
9a85c9f0c0
commit
2a75912724
3 changed files with 9 additions and 10 deletions
|
@ -6,7 +6,9 @@ import QtQuick
|
|||
|
||||
Singleton {
|
||||
id: player
|
||||
property MprisPlayer current: player.all[player.index]
|
||||
|
||||
property var current: player.all[player.index]
|
||||
|
||||
property var all: Mpris.players.values
|
||||
property int index: {
|
||||
const ind = Mpris.players.values.findIndex(p => p.playbackState === MprisPlaybackState.Playing);
|
||||
|
|
|
@ -41,8 +41,10 @@ BRectangle {
|
|||
return ""
|
||||
else if (UPower.displayDevice?.state === UPowerDeviceState.PendingCharge && !UPower.onBattery)
|
||||
return ""
|
||||
else
|
||||
return ""
|
||||
|
||||
visible: text
|
||||
visible: text.length
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,13 +15,9 @@ PopupWindow {
|
|||
visible: true
|
||||
|
||||
mask: Region {
|
||||
item: popups
|
||||
|
||||
Region {
|
||||
intersection: Intersection.Combine
|
||||
height: popupcol.count * 26 + popupcol.count * popupcol.spacing + (mouseArea.containsMouse * 114)
|
||||
width: 300
|
||||
}
|
||||
intersection: Intersection.Combine
|
||||
height: popupcol.count * 26 + popupcol.count * popupcol.spacing + (mouseArea.containsMouse * 114)
|
||||
width: 300
|
||||
}
|
||||
|
||||
color: "transparent"
|
||||
|
@ -40,7 +36,6 @@ PopupWindow {
|
|||
model: ListModel {
|
||||
id: data
|
||||
Component.onCompleted: () => {
|
||||
console.log(popupcol.count);
|
||||
Notifications.d.notification.connect(e => {
|
||||
data.insert(0, e);
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue