From bfefa94a7bf18f1e1e71ff4026052fac9e985e1a Mon Sep 17 00:00:00 2001 From: Ravioli8235 Date: Fri, 21 Jun 2024 15:58:15 +0200 Subject: [PATCH] fix panel fill --- src/iSponsorBlockTV/setup_wizard.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/iSponsorBlockTV/setup_wizard.py b/src/iSponsorBlockTV/setup_wizard.py index e45a02e..ede8bee 100644 --- a/src/iSponsorBlockTV/setup_wizard.py +++ b/src/iSponsorBlockTV/setup_wizard.py @@ -864,12 +864,11 @@ class AutoPlayManager(Vertical): classes="subtitle", id="autoplay-subtitle", ) - with Horizontal(id="autoplay-container"): - yield Checkbox( - value=self.config.auto_play, - id="autoplay-switch", - label="Enable autoplay", - ) + yield Checkbox( + value=self.config.auto_play, + id="autoplay-switch", + label="Enable autoplay", + ) @on(Checkbox.Changed, "#autoplay-switch") def changed_skip(self, event: Checkbox.Changed):