chore: clean warnings

This commit is contained in:
Nydragon 2024-11-01 19:20:14 +01:00
parent 9a85c9f0c0
commit 2a75912724
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
3 changed files with 9 additions and 10 deletions

View file

@ -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);

View file

@ -41,8 +41,10 @@ BRectangle {
return "󱐋"
else if (UPower.displayDevice?.state === UPowerDeviceState.PendingCharge && !UPower.onBattery)
return "󰚥"
else
return ""
visible: text
visible: text.length
}
}
}

View file

@ -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);
});