From: Scott Worley Date: Tue, 7 Oct 2025 07:05:43 +0000 (-0700) Subject: 'Share Webcam' defaults to off X-Git-Url: http://git.scottworley.com/srec/commitdiff_plain/fd4597bac82be8bb8430e95009af05abdcbb06bd 'Share Webcam' defaults to off --- 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