~renatofilho/mediaplayer-app/fix-1365408

« back to all changes in this revision

Viewing changes to src/qml/player/AbstractPlayer.qml

  • Committer: Renato Araujo Oliveira Filho
  • Date: 2014-10-02 20:32:38 UTC
  • Revision ID: renato.filho@canonical.com-20141002203238-3dnchyyp1fvqrr5n
Use all available space for progress bar.

Show diffs side-by-side

added added

removed removed

Lines of Context:
161
161
        State {
162
162
            name: "playing"
163
163
            PropertyChanges { target: mediaPlayer; playbackRate: 1.0; muted: false }
164
 
            StateChangeScript { script: {
165
 
                                console.debug("Media player will play:" + mediaPlayer.source)
166
 
                                mediaPlayer.play() }
167
 
                              }
 
164
            StateChangeScript { script: mediaPlayer.play() }
168
165
            PropertyChanges { target: scrubbingTimer; running: false }
169
166
        },
170
167