diff --git a/src/App.vue b/src/App.vue index 4aa7b6b..027739b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -346,6 +346,7 @@ init() :current-speed="currentSpeed" :visible="showTopBar" :show-quality="!isLocalMode" + :hide="store.choices.length > 0" @skip="handleSkip" @speed-change="handleSpeedChange" /> diff --git a/src/components/PlaybackBar.vue b/src/components/PlaybackBar.vue index d146a07..e1702a4 100644 --- a/src/components/PlaybackBar.vue +++ b/src/components/PlaybackBar.vue @@ -11,6 +11,7 @@ const props = defineProps<{ currentSpeed: number visible: boolean showQuality: boolean + hide: boolean }>() const emit = defineEmits<{ @@ -35,12 +36,12 @@ onMounted(() => updateLabel(props.currentSpeed))