diff --git a/src/renderer/components/watch-video-playlist/watch-video-playlist.js b/src/renderer/components/watch-video-playlist/watch-video-playlist.js index bfe449b6eb0ec..3bf5e39b284fd 100644 --- a/src/renderer/components/watch-video-playlist/watch-video-playlist.js +++ b/src/renderer/components/watch-video-playlist/watch-video-playlist.js @@ -48,7 +48,6 @@ export default defineComponent({ shuffleEnabled: false, loopEnabled: false, reversePlaylist: false, - pauseOnCurrentVideo: false, prevVideoBeforeDeletion: null, channelName: '', channelId: '', @@ -294,16 +293,6 @@ export default defineComponent({ }) }, - togglePauseOnCurrentVideo: function () { - if (this.pauseOnCurrentVideo) { - this.pauseOnCurrentVideo = false - showToast(this.$t('Playlist will not pause when current video is finished')) - } else { - this.pauseOnCurrentVideo = true - showToast(this.$t('Playlist will pause when current video is finished')) - } - }, - playNextVideo: function () { const playlistInfo = { playlistId: this.playlistId, diff --git a/src/renderer/components/watch-video-playlist/watch-video-playlist.vue b/src/renderer/components/watch-video-playlist/watch-video-playlist.vue index 85abbd3efb880..f3d01b0efd1e9 100644 --- a/src/renderer/components/watch-video-playlist/watch-video-playlist.vue +++ b/src/renderer/components/watch-video-playlist/watch-video-playlist.vue @@ -105,18 +105,6 @@ @keydown.enter.prevent="playNextVideo" @keydown.space.prevent="playNextVideo" /> -