~etherpulse/podbird/playback_rate

« back to all changes in this revision

Viewing changes to app/ui/FullPlayingView.qml

  • Committer: Eran Uzan
  • Date: 2020-06-12 22:06:32 UTC
  • Revision ID: etherpulse@gmail.com-20200612220632-8ykmirqv6psr1wak
Added playback speed configuration to allow for faster / slower listening experience 

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
            color: podbird.appTheme.baseSubText
119
119
        }
120
120
        
 
121
        Label {
 
122
            id:playbackRateText
 
123
            anchors {
 
124
                right:parent.right
 
125
                bottom:scrubber.top
 
126
                bottomMargin:units.gu(1)
 
127
            }
 
128
            // TRANSLATORS : this donte the playback speed i.e. 1x , 2.5x etc.. , it should be short if possible
 
129
            text: i18n.tr("%1x").arg(podbird.settings.playbackSpeed)
 
130
            textSize: Label.Small
 
131
            color: podbird.appTheme.baseSubText
 
132
        }
121
133
        Slider {
122
134
            id: scrubber
123
135