From fd4597bac82be8bb8430e95009af05abdcbb06bd Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Tue, 7 Oct 2025 00:05:43 -0700 Subject: [PATCH 1/1] 'Share Webcam' defaults to off --- srec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srec.py b/srec.py index b3abee1..dc6aeff 100644 --- a/srec.py +++ b/srec.py @@ -156,7 +156,7 @@ def make_button(label: str, action: Callable[[ def make_share_control() -> Gtk.CheckButton: can_share = os.path.exists('/sys/module/v4l2loopback') control = Gtk.CheckButton( - label='Share Webcam', sensitive=can_share, active=can_share) + label='Share Webcam', sensitive=can_share) control.set_margin_start(20) return control -- 2.51.2