~ci-train-bot/ubuntu-settings-components/ubuntu-settings-components-ubuntu-yakkety-1987

« back to all changes in this revision

Viewing changes to plugins/Ubuntu/Settings/Menus/MediaPlayerMenu.qml

Make sure a size is specified for the albumArtImage for indicator-
sound or else the albumart lookup via thumbnailer will fail and the
albumArtImage will not render.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
import Ubuntu.Components 1.3
21
21
import Ubuntu.Components.ListItems 1.3 as ListItem
22
22
import QtQuick.Layouts 1.1
 
23
import Ubuntu.Thumbnailer 0.1
23
24
 
24
25
ListItem.Empty {
25
26
    id: menu
81
82
 
82
83
                image: Image {
83
84
                    id: albumArtImage
 
85
                    width: units.gu(8)
 
86
                    height: width
 
87
                    fillMode: Image.PreserveAspectFit
 
88
                    sourceSize: Qt.size(width, height)
 
89
                    anchors.centerIn: parent
84
90
                }
85
91
            }
86
92