Use playback color for player page slider

This commit is contained in:
Thomas Perl 2014-02-07 00:28:13 +01:00
parent e05f13225a
commit 41b5a91e75
2 changed files with 5 additions and 2 deletions

View file

@ -21,6 +21,7 @@
import QtQuick 2.0
import 'common/util.js' as Util
import 'common/constants.js' as Constants
SlidePage {
id: playerPage
@ -111,6 +112,7 @@ SlidePage {
value: player.position
min: 0
max: player.duration
fillColor: Constants.colors.playback
onValueChangeRequested: {
player.seekAndSync(newValue);
}