Icon: new speed icon
This commit is contained in:
parent
170fbea7a4
commit
b13c40e238
2 changed files with 7 additions and 7 deletions
|
|
@ -31,7 +31,7 @@ NBox {
|
||||||
}
|
}
|
||||||
|
|
||||||
NIcon {
|
NIcon {
|
||||||
text: "album"
|
text: FontService.icons["album"]
|
||||||
font.pointSize: Style.fontSizeXXXL * 2.5 * scaling
|
font.pointSize: Style.fontSizeXXXL * 2.5 * scaling
|
||||||
color: Color.mPrimary
|
color: Color.mPrimary
|
||||||
Layout.alignment: Qt.AlignHCenter
|
Layout.alignment: Qt.AlignHCenter
|
||||||
|
|
@ -89,7 +89,7 @@ NBox {
|
||||||
indicator: NIcon {
|
indicator: NIcon {
|
||||||
x: playerSelector.width - width
|
x: playerSelector.width - width
|
||||||
y: playerSelector.topPadding + (playerSelector.availableHeight - height) / 2
|
y: playerSelector.topPadding + (playerSelector.availableHeight - height) / 2
|
||||||
text: "arrow_drop_down"
|
text: FontService.icons["arrow_drop_down"]
|
||||||
font.pointSize: Style.fontSizeXXL * scaling
|
font.pointSize: Style.fontSizeXXL * scaling
|
||||||
color: Color.mOnSurface
|
color: Color.mOnSurface
|
||||||
horizontalAlignment: Text.AlignRight
|
horizontalAlignment: Text.AlignRight
|
||||||
|
|
@ -162,14 +162,14 @@ NBox {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.margins: Style.marginXS * scaling
|
anchors.margins: Style.marginXS * scaling
|
||||||
imagePath: MediaService.trackArtUrl
|
imagePath: MediaService.trackArtUrl
|
||||||
fallbackIcon: FontService.icons["vinyl"]
|
fallbackIcon: FontService.icons["album"]
|
||||||
borderColor: Color.mOutline
|
borderColor: Color.mOutline
|
||||||
borderWidth: Math.max(1, Style.borderS * scaling)
|
borderWidth: Math.max(1, Style.borderS * scaling)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fallback icon when no album art available
|
// Fallback icon when no album art available
|
||||||
NIcon {
|
NIcon {
|
||||||
text: "album"
|
text: FontService.icons["album"]
|
||||||
color: Color.mPrimary
|
color: Color.mPrimary
|
||||||
font.pointSize: Style.fontSizeL * 12 * scaling
|
font.pointSize: Style.fontSizeL * 12 * scaling
|
||||||
visible: !trackArt.visible
|
visible: !trackArt.visible
|
||||||
|
|
@ -307,7 +307,7 @@ NBox {
|
||||||
|
|
||||||
// Previous button
|
// Previous button
|
||||||
NIconButton {
|
NIconButton {
|
||||||
icon: FontService.icons["previous"]
|
icon: FontService.icons["prev"]
|
||||||
tooltipText: "Previous Media"
|
tooltipText: "Previous Media"
|
||||||
visible: MediaService.canGoPrevious
|
visible: MediaService.canGoPrevious
|
||||||
onClicked: MediaService.canGoPrevious ? MediaService.previous() : {}
|
onClicked: MediaService.canGoPrevious ? MediaService.previous() : {}
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@ Singleton {
|
||||||
"refresh": "\uF021",
|
"refresh": "\uF021",
|
||||||
"video_camera": "\uF03D",
|
"video_camera": "\uF03D",
|
||||||
"ethernet": "\uEF09",
|
"ethernet": "\uEF09",
|
||||||
"speed": "\uEEB2",
|
"speed": "\uF06D",
|
||||||
"leaf": "\uF06C",
|
"leaf": "\uF06C",
|
||||||
"microphone": "\uED03",
|
"microphone": "\uED03",
|
||||||
"coffee": "\uef59",
|
"coffee": "\uef59",
|
||||||
|
|
@ -66,7 +66,7 @@ Singleton {
|
||||||
"info": "\uF26A",
|
"info": "\uF26A",
|
||||||
"upload": "\uF01B",
|
"upload": "\uF01B",
|
||||||
"download": "\uF01A",
|
"download": "\uF01A",
|
||||||
"vinyl": "\uEFBD",
|
"album": "\uEFBD",
|
||||||
"link": "\uF0C1",
|
"link": "\uF0C1",
|
||||||
"plus": "\uF067",
|
"plus": "\uF067",
|
||||||
"minus": "\uF068",
|
"minus": "\uF068",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue