~ci-train-bot/ubuntu-settings-components/ubuntu-settings-components-ubuntu-zesty-2202

« back to all changes in this revision

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

  • Committer: Nick Dedekind
  • Date: 2013-09-25 08:54:58 UTC
  • mto: This revision was merged to the branch mainline in revision 50.
  • Revision ID: nicholas.dedekind@gmail.com-20130925085458-35zo920vi41gq173
Restructured qml folders

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
            }