From: Scott Worley Date: Mon, 6 Oct 2025 02:37:14 +0000 (-0700) Subject: Spell "loopback" correctly X-Git-Url: http://git.scottworley.com/srec/commitdiff_plain/545a7ac62734b0520e71d89ad4348fe9ba6bc014?hp=5d55db5fcef6054553b83ca693980740914913e0 Spell "loopback" correctly --- diff --git a/srec.py b/srec.py index bacc1df..01b5a8c 100644 --- a/srec.py +++ b/srec.py @@ -106,7 +106,7 @@ def make_button(label: str, action: Callable[[ def make_share_control() -> Gtk.CheckButton: - can_share = os.path.exists('/sys/module/v4l2looback') + can_share = os.path.exists('/sys/module/v4l2loopback') control = Gtk.CheckButton( label='Share Webcam', sensitive=can_share, active=can_share) control.set_margin_start(20)