From 5205965d0d7d2b31a6b2af05dad74308082a0c6c Mon Sep 17 00:00:00 2001
From: TwistedUmbrellaX
Date: Sun, 20 Oct 2024 07:53:48 -0400
Subject: [PATCH] Make the ignore button label specific
---
.../Configuration/configPage.html | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html b/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html
index bfba8c2..676d0da 100644
--- a/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html
+++ b/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html
@@ -144,7 +144,7 @@
Increasing either of these settings will cause episode analysis to take much longer.
-
+
@@ -992,6 +992,8 @@
return;
}
+ saveIgnoreListSeriesButton.textContent = "Apply to series";
+
// add all seasons from this show to the season select
for (const season in shows[selectShow.value].Seasons) {
addItem(selectSeason, "Season " + shows[selectShow.value].Seasons[season], season);
@@ -1080,6 +1082,7 @@
Dashboard.showLoadingMsg();
+ saveIgnoreListSeriesButton.textContent = "Apply to movie";
seasonSelection.style.display = "none";
episodeSelection.style.display = "none";
eraseMovieContainer.style.display = "unset";