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 { Singleton {
id: player id: player
property MprisPlayer current: player.all[player.index]
property var current: player.all[player.index]
property var all: Mpris.players.values property var all: Mpris.players.values
property int index: { property int index: {
const ind = Mpris.players.values.findIndex(p => p.playbackState === MprisPlaybackState.Playing); const ind = Mpris.players.values.findIndex(p => p.playbackState === MprisPlaybackState.Playing);

View file

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

View file

@ -15,13 +15,9 @@ PopupWindow {
visible: true visible: true
mask: Region { mask: Region {
item: popups intersection: Intersection.Combine
height: popupcol.count * 26 + popupcol.count * popupcol.spacing + (mouseArea.containsMouse * 114)
Region { width: 300
intersection: Intersection.Combine
height: popupcol.count * 26 + popupcol.count * popupcol.spacing + (mouseArea.containsMouse * 114)
width: 300
}
} }
color: "transparent" color: "transparent"
@ -40,7 +36,6 @@ PopupWindow {
model: ListModel { model: ListModel {
id: data id: data
Component.onCompleted: () => { Component.onCompleted: () => {
console.log(popupcol.count);
Notifications.d.notification.connect(e => { Notifications.d.notification.connect(e => {
data.insert(0, e); data.insert(0, e);
}); });