Compare commits

...

3 Commits

Author SHA1 Message Date
eriq12 c86fcd4f24 Add radius to both scrubber outline and scrubber background for visual
consistency
2026-07-24 00:18:38 -04:00
eriq12 62c5a9a98d [AI] Changed height to restore original scrubber height visually, and
changed color for visibility
2026-07-24 00:17:30 -04:00
eriq12 4e9798f436 [AI] Added outline to scrubber 2026-07-24 00:13:23 -04:00
+12 -3
View File
@@ -189,12 +189,20 @@ Item {
text: playerController.player?.trackArtist
}
Rectangle {
id: scrubber
id: scrubberOutline
Layout.fillWidth: true
Layout.preferredHeight: 8
Layout.preferredHeight: 12
Layout.rightMargin: 8
color: blendedColors.colLayer1
color: blendedColors.colSecondaryContainer
visible: playerController.player?.length > 0
radius: parent.height / 2
Rectangle {
id: scrubber
anchors.fill: parent
anchors.margins: 2
color: blendedColors.colLayer1
radius: parent.height / 2
Rectangle {
anchors.top: parent.top
@@ -216,6 +224,7 @@ Item {
}
}
}
}
RowLayout {
Layout.fillWidth: true
Layout.preferredHeight: 32