~vthompson/music-app/remix-songs-page-elide

« back to all changes in this revision

Viewing changes to MusicNowPlaying.qml

* Fix the toolbar so it is always shown
* Move progress bar to the bottom of the toolbar.

Approved by Victor Thompson, Ubuntu Phone Apps Jenkins Bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
        }
45
45
    }
46
46
 
47
 
    Component.onCompleted: {
48
 
        onToolbarShownChanged.connect(jumpToCurrent)
49
 
    }
50
 
 
51
47
    Connections {
52
48
        target: player
53
49
        onCurrentIndexChanged: {
83
79
    ListView {
84
80
        id: queuelist
85
81
        objectName: "nowPlayingQueueList"
86
 
        anchors.fill: parent
87
 
        anchors.bottomMargin: musicToolbar.mouseAreaOffset + musicToolbar.minimizedHeight
 
82
        anchors {
 
83
            fill: parent
 
84
        }
88
85
        delegate: queueDelegate
89
86
        model: trackQueue.model
90
87
        highlightFollowsCurrentItem: false
117
114
            customdebug("Queue: Now has: " + queuelist.count + " tracks")
118
115
        }
119
116
 
120
 
        onMovementStarted: {
121
 
            musicToolbar.hideToolbar();
122
 
        }
123
 
 
124
117
        Component {
125
118
            id: queueDelegate
126
119
            ListItemWithActions {