From b59135316eaedbab4d9565a198f792e2ac01fcbe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Jan 2025 16:59:21 +0000 Subject: [PATCH 1/2] Bump textual-slider from 0.1.1 to 0.1.2 Bumps [textual-slider](https://github.com/TomJGooding/textual-slider) from 0.1.1 to 0.1.2. - [Changelog](https://github.com/TomJGooding/textual-slider/blob/main/CHANGELOG.md) - [Commits](https://github.com/TomJGooding/textual-slider/commits) --- updated-dependencies: - dependency-name: textual-slider dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 0b6deb3..7cc7fa6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,6 +6,6 @@ pyytlounge==2.0.0 rich==13.7.1 ssdp==1.3.0 textual==0.58.0 -textual-slider==0.1.1 +textual-slider==0.1.2 xmltodict==0.13.0 rich_click==1.8.3 From 6825ac6629dc6936c25b64a52f2bcde9e3036afa Mon Sep 17 00:00:00 2001 From: dmunozv04 <39565245+dmunozv04@users.noreply.github.com> Date: Thu, 16 Jan 2025 18:56:17 +0100 Subject: [PATCH 2/2] fix slider --- src/iSponsorBlockTV/setup_wizard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iSponsorBlockTV/setup_wizard.py b/src/iSponsorBlockTV/setup_wizard.py index fa308f5..995ce19 100644 --- a/src/iSponsorBlockTV/setup_wizard.py +++ b/src/iSponsorBlockTV/setup_wizard.py @@ -585,7 +585,7 @@ def compose(self) -> ComposeResult: ) def on_slider_changed(self, event: Slider.Changed) -> None: - offset_input = self.query_one("#device-offset-offset_input") + offset_input = self.query_one("#device-offset-input") with offset_input.prevent(Input.Changed): offset_input.value = str(event.slider.value)