~nick-dedekind/ubuntu-settings-components/bluetooth-menu

« back to all changes in this revision

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

  • Committer: Tarmac
  • Author(s): Nick Dedekind
  • Date: 2013-10-04 09:14:39 UTC
  • mfrom: (49.1.11 usc)
  • Revision ID: tarmac-20131004091439-bj4ts24iv1kmm7a7
Reworked directory, qml and resources into a more workable structure for release.

Approved by Andrea Cimitan, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
            Button {
96
96
                objectName: "previousButton"
97
97
                width: controlsRow.buttonsWidth
98
 
                iconSource: "MediaPlayer/DoubleLeftArrow.png"
 
98
                iconSource: "artwork/DoubleLeftArrow.png"
99
99
                onClicked: mediaPlayerMenu.previous()
100
100
                text: ""
101
101
            }
103
103
            Button {
104
104
                objectName: "playButton"
105
105
                width: controlsRow.buttonsWidth
106
 
                iconSource: playing ? "MediaPlayer/RightArrow.png" : "MediaPlayer/RightArrow.png"
 
106
                iconSource: playing ? "artwork/RightArrow.png" : "artwork/RightArrow.png"
107
107
                onClicked: mediaPlayerMenu.play()
108
108
                text: ""
109
109
            }
111
111
            Button {
112
112
                objectName: "nextButton"
113
113
                width: controlsRow.buttonsWidth
114
 
                iconSource: "MediaPlayer/DoubleRightArrow.png"
 
114
                iconSource: "artwork/DoubleRightArrow.png"
115
115
                onClicked: mediaPlayerMenu.next()
116
116
                text: ""
117
117
            }