We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16aeaf2 commit aeb7f03Copy full SHA for aeb7f03
src/renderer/components/player/AdvancedControlsPopover.vue
@@ -66,14 +66,14 @@
66
<div class="modal-close" @click="showSpeedModal = false">
67
<i class="ri-close-line"></i>
68
</div>
69
- <h3>{{ t('player.playBar.playbackSpeed') }}</h3>
+ <h3>{{ t('player.playBar.playbackSpeed') }} ({{ playbackRate }}x)</h3>
70
<div class="speed-controls">
71
<div class="speed-options">
72
- <div
73
- v-for="option in playbackRateOptions"
+ <div
+ v-for="option in playbackRateOptions"
74
:key="option.key"
75
class="speed-option"
76
- :class="{ 'active': playbackRate === option.key }"
+ :class="{ active: playbackRate === option.key }"
77
@click="selectSpeed(option.key)"
78
>
79
{{ option.label }}
0 commit comments