moved quickshell around

This commit is contained in:
2025-07-24 03:00:40 +01:00
parent 8e587b5718
commit 75145b0f41
11 changed files with 36 additions and 104 deletions

View File

@@ -4,9 +4,7 @@ import Quickshell
import QtQuick.Layouts
PopupWindow {
property PlayerControllerV2 playerController: null;
property PlayerControllerV2 player: PlayerControllerV2;
id: audioPopup
anchor {
@@ -27,19 +25,19 @@ PopupWindow {
Image {
id: coverImg
anchors.fill: parent
source: Player.activePlayer.trackArtUrl;
source: player.activePlayer.trackArtUrl;
width: 275
height: 275
fillMode: Image.PreserveAspectCrop
}
}
Text {
text: Player.activePlayer.trackTitle
text: player.activePlayer.trackTitle
color: "white"
font.pointSize: 10.75
}
Text {
text: Player.activePlayer.trackArtist
text: player.activePlayer.trackArtist
color: "white"
font.pointSize: 10.75
}