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 {
|
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);
|
||||||
|
|
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,14 +15,10 @@ PopupWindow {
|
||||||
visible: true
|
visible: true
|
||||||
|
|
||||||
mask: Region {
|
mask: Region {
|
||||||
item: popups
|
|
||||||
|
|
||||||
Region {
|
|
||||||
intersection: Intersection.Combine
|
intersection: Intersection.Combine
|
||||||
height: popupcol.count * 26 + popupcol.count * popupcol.spacing + (mouseArea.containsMouse * 114)
|
height: popupcol.count * 26 + popupcol.count * popupcol.spacing + (mouseArea.containsMouse * 114)
|
||||||
width: 300
|
width: 300
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
height: popupcol.count * 26 + 300
|
height: popupcol.count * 26 + 300
|
||||||
|
@ -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);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue